Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
sir,
if i enter any value like 5 in a text box then the submit button click work only 5 times not more than 5 times.

thank in adv.

plz, reply
Posted
Comments
Subrata.In 19-Nov-12 1:30am    
Specify in details what you want to do.
OriginalGriff 19-Nov-12 3:02am    
And what have you tried? Where are you stuck?

1 solution

C#
int i=0;
public void Button_Click(object sender EventArgs e)
{
    Textbox.Attributes.Add("readonly", "true");
    i=Convert.ToInt32(Textbox.value);
    if(i<=0)
       Button.diabled=true;
    i--;
    Textbox.value=i.toString();
}



In this program we disable the textbox in the button click event so the user cannot change the data in the textbox.

and we are retrieving the value in the textbox and checking if it is less than or equal to 0 the button is also get disabled otherwise we decrement the value in the textbox by 1 and updating it so that we can use the updated value in the next button click event.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900