Click here to Skip to main content
15,891,607 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Using a Login Pin
Not Active7-Jun-10 9:05
mentorNot Active7-Jun-10 9:05 
AnswerRe: Using a Login Pin
Sandeep Mewara7-Jun-10 9:09
mveSandeep Mewara7-Jun-10 9:09 
GeneralRe: Using a Login [modified] Pin
vn214568-Jun-10 22:52
vn214568-Jun-10 22:52 
Questionwebsite language translater Pin
sumit70347-Jun-10 6:51
sumit70347-Jun-10 6:51 
AnswerRe: website language translater Pin
Sandeep Mewara7-Jun-10 9:07
mveSandeep Mewara7-Jun-10 9:07 
QuestionRefresh page while record added in database Pin
Karan_TN7-Jun-10 6:34
Karan_TN7-Jun-10 6:34 
AnswerRe: Refresh page while record added in database Pin
Sandeep Mewara7-Jun-10 9:04
mveSandeep Mewara7-Jun-10 9:04 
QuestionAvoiding Button Double Click (DropDownList) Pin
Karan_TN7-Jun-10 6:32
Karan_TN7-Jun-10 6:32 
private void checkButtonDoubleClick(Button button)
{
System.Text.StringBuilder sbValid = new System.Text.StringBuilder();
sbValid.Append("if (typeof(Page_ClientValidate) == 'function') { ");
sbValid.Append("if (Page_ClientValidate() == false) { return false; }} ");
sbValid.Append("this.value = 'Please wait...';");
sbValid.Append("this.disabled = true;");
sbValid.Append(this.Page.ClientScript.GetPostBackEventReference(button, ""));
sbValid.Append(";");
button.Attributes.Add("onclick", sbValid.ToString());
}

the above coding avoid double click for an button..

also the same i would like to apply for an dropdownlist. because according to the selection of dropdown value, i m changing the button textvalue. according to the text value i m calling different functions.so when user select the dropdownlist item, it take some time. during that time, user should not click the button obviously.

so i want to disable the button while user selecting item from dropdownlist until the text changes.

how to achieve it? help me - KARAN
AnswerRe: Avoiding Button Double Click (DropDownList) Pin
Sandeep Mewara7-Jun-10 9:01
mveSandeep Mewara7-Jun-10 9:01 
QuestionAsp.net - Session Timeout Pin
karthi167-Jun-10 6:12
karthi167-Jun-10 6:12 
AnswerRe: Asp.net - Session Timeout Pin
Sandeep Mewara7-Jun-10 8:57
mveSandeep Mewara7-Jun-10 8:57 
Questionissue with boolean datatype Pin
bigphish7-Jun-10 6:09
bigphish7-Jun-10 6:09 
AnswerRe: issue with boolean datatype Pin
Sandeep Mewara7-Jun-10 8:48
mveSandeep Mewara7-Jun-10 8:48 
GeneralRe: issue with boolean datatype Pin
bigphish7-Jun-10 19:29
bigphish7-Jun-10 19:29 
GeneralRe: issue with boolean datatype Pin
bigphish7-Jun-10 21:10
bigphish7-Jun-10 21:10 
AnswerRe: issue with boolean datatype Pin
J$8-Jun-10 13:22
J$8-Jun-10 13:22 
QuestionLogin Problem Pin
Gjm7-Jun-10 3:53
Gjm7-Jun-10 3:53 
AnswerRe: Login Problem Pin
Not Active7-Jun-10 4:46
mentorNot Active7-Jun-10 4:46 
GeneralRe: Login Problem Pin
Gjm7-Jun-10 7:00
Gjm7-Jun-10 7:00 
GeneralRe: Login Problem Pin
walterhevedeich7-Jun-10 16:11
professionalwalterhevedeich7-Jun-10 16:11 
QuestionDatepicker Issues for Cloned Row: Pin
Shubhangi12347-Jun-10 3:22
Shubhangi12347-Jun-10 3:22 
QuestionDesign Problem... Pin
priyareguri7-Jun-10 2:32
priyareguri7-Jun-10 2:32 
AnswerRe: Design Problem... Pin
Jamil Hallal7-Jun-10 2:57
professionalJamil Hallal7-Jun-10 2:57 
Questionget number of month detween 2 date Pin
Amit Patel19857-Jun-10 0:30
Amit Patel19857-Jun-10 0:30 
AnswerRe: get number of month detween 2 date Pin
Not Active7-Jun-10 0:42
mentorNot Active7-Jun-10 0:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.