Click here to Skip to main content
15,902,112 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Standard pattern for updating a tab in one click? Pin
alex3_1424-Mar-09 22:22
alex3_1424-Mar-09 22:22 
AnswerRe: Standard pattern for updating a tab in one click? [modified] Pin
fred_25-Mar-09 2:51
fred_25-Mar-09 2:51 
QuestionRe: Standard pattern for updating a tab in one click? Pin
alex3_1425-Mar-09 3:52
alex3_1425-Mar-09 3:52 
GeneralRe: Standard pattern for updating a tab in one click? Pin
fred_25-Mar-09 3:57
fred_25-Mar-09 3:57 
GeneralRe: Standard pattern for updating a tab in one click? Pin
alex3_1425-Mar-09 4:35
alex3_1425-Mar-09 4:35 
QuestionTextChange Event on a collection of textboxes [modified] Pin
Ragonastick24-Mar-09 5:46
Ragonastick24-Mar-09 5:46 
AnswerRe: TextChange Event on a collection of textboxes Pin
Milind R Chavan24-Mar-09 6:11
Milind R Chavan24-Mar-09 6:11 
AnswerRe: TextChange Event on a collection of textboxes Pin
jokerkachotabhai24-Mar-09 9:12
jokerkachotabhai24-Mar-09 9:12 
U must have assigned ID to all of ur textboxes whether u create it dynamically or us it beforehand as a static control

so u can create a centralized event handler for all ur textboxes

for eg. if i have two textboxes with their ID as say t1 and t2 respectively then

i will use this method to act as a centralized event handler for textchange d event of both as

void TextBox_TextChanged(object sender,EventArgs e)
{
TextBox t = (TextBox)sender;
switch(t.ID)
{
case "t1": Response.Write("Text Changed in t1");
break;
case "t2": Response.Write("TextChanged in t2");
break;
}
}
QuestionPopulate dynamic data on mouse hover Pin
nainakarri24-Mar-09 5:42
nainakarri24-Mar-09 5:42 
AnswerRe: Populate dynamic data on mouse hover Pin
Milind R Chavan24-Mar-09 6:20
Milind R Chavan24-Mar-09 6:20 
GeneralRe: Populate dynamic data on mouse hover Pin
nainakarri24-Mar-09 6:42
nainakarri24-Mar-09 6:42 
AnswerRe: Populate dynamic data on mouse hover Pin
Milind R Chavan24-Mar-09 7:01
Milind R Chavan24-Mar-09 7:01 
QuestionMailbox unavailable exception plz help!!! Pin
jokerkachotabhai24-Mar-09 5:13
jokerkachotabhai24-Mar-09 5:13 
AnswerRe: Mailbox unavailable exception plz help!!! Pin
vinodkrebc25-Mar-09 0:26
vinodkrebc25-Mar-09 0:26 
Questionhow to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C# Pin
jokerkachotabhai24-Mar-09 5:05
jokerkachotabhai24-Mar-09 5:05 
AnswerRe: how to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C# Pin
nainakarri24-Mar-09 6:08
nainakarri24-Mar-09 6:08 
GeneralRe: how to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C# Pin
jokerkachotabhai24-Mar-09 8:57
jokerkachotabhai24-Mar-09 8:57 
GeneralRe: how to enable AutoGenerateDeleteButton on only specific rows of a gridview depending on the value of data key in C# Pin
vinodkrebc25-Mar-09 0:28
vinodkrebc25-Mar-09 0:28 
QuestionApplicxation form Pin
Bataineh24-Mar-09 3:59
Bataineh24-Mar-09 3:59 
AnswerRe: Applicxation form Pin
Milind R Chavan24-Mar-09 4:20
Milind R Chavan24-Mar-09 4:20 
AnswerRe: Applicxation form Pin
Abhijit Jana24-Mar-09 4:29
professionalAbhijit Jana24-Mar-09 4:29 
QuestionRe: Applicxation form Pin
Bataineh24-Mar-09 5:08
Bataineh24-Mar-09 5:08 
AnswerRe: Applicxation form Pin
Milind R Chavan24-Mar-09 5:59
Milind R Chavan24-Mar-09 5:59 
QuestionSend a reminder to outlook or other client using email Pin
Paul McGann24-Mar-09 3:02
professionalPaul McGann24-Mar-09 3:02 
AnswerRe: Send a reminder to outlook or other client using email Pin
Abhijit Jana24-Mar-09 4:31
professionalAbhijit Jana24-Mar-09 4:31 

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.