Click here to Skip to main content
15,907,910 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionplz send some .net projects using asp.net,c#,sqlserver2000 Pin
basha.sk27-Sep-06 3:08
basha.sk27-Sep-06 3:08 
AnswerRe: plz send some .net projects using asp.net,c#,sqlserver2000 Pin
Guffa27-Sep-06 3:12
Guffa27-Sep-06 3:12 
AnswerRe: plz send some .net projects using asp.net,c#,sqlserver2000 Pin
Sathesh Sakthivel27-Sep-06 3:51
Sathesh Sakthivel27-Sep-06 3:51 
Questionhow to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 2:47
ashraf hakiem27-Sep-06 2:47 
AnswerRe: how to clear the text in alot off texeboxs Pin
Exelioindia27-Sep-06 2:52
Exelioindia27-Sep-06 2:52 
AnswerRe: how to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 3:02
ashraf hakiem27-Sep-06 3:02 
AnswerRe: how to clear the text in alot off texeboxs Pin
albCode27-Sep-06 3:38
albCode27-Sep-06 3:38 
AnswerRe: how to clear the text in alot off texeboxs Pin
Charl27-Sep-06 4:07
Charl27-Sep-06 4:07 
This will do it.

void SetAllInputControlsClassName(Control parent,
string className, string focusClassName)
{
foreach (Control ctl in parent.Controls)
{
if (ctl is TextBox || ctl is ListBox ||
ctl is DropDownList)
{
//Do stuff here
}
}
}
GeneralRe: how to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 22:10
ashraf hakiem27-Sep-06 22:10 
GeneralRe: how to clear the text in alot off texeboxs Pin
Charl27-Sep-06 22:42
Charl27-Sep-06 22:42 
QuestionThread Was Being Aborted Pin
surshbabuk27-Sep-06 2:39
surshbabuk27-Sep-06 2:39 
AnswerRe: Everyone, Pin
amaneet27-Sep-06 2:41
amaneet27-Sep-06 2:41 
AnswerRe: Everyone, Pin
Sathesh Sakthivel27-Sep-06 2:41
Sathesh Sakthivel27-Sep-06 2:41 
AnswerRe: Thread Was Being Aborted Pin
Steve McLenithan27-Sep-06 4:29
Steve McLenithan27-Sep-06 4:29 
GeneralRe: Everyone, Pin
surshbabuk27-Sep-06 2:45
surshbabuk27-Sep-06 2:45 
GeneralRe: Everyone, Pin
amaneet27-Sep-06 3:23
amaneet27-Sep-06 3:23 
GeneralRe: Everyone, Pin
Not Active27-Sep-06 4:26
mentorNot Active27-Sep-06 4:26 
QuestionHow to open a notepad in asp.net web application Pin
srilu nagalla27-Sep-06 1:19
srilu nagalla27-Sep-06 1:19 
AnswerRe: How to open a notepad in asp.net web application Pin
Steve McLenithan27-Sep-06 4:23
Steve McLenithan27-Sep-06 4:23 
GeneralRe: How to open a notepad in asp.net web application Pin
srilu nagalla27-Sep-06 19:04
srilu nagalla27-Sep-06 19:04 
GeneralRe: How to open a notepad in asp.net web application Pin
krishna1928-Sep-06 4:27
krishna1928-Sep-06 4:27 
Questionmodule file Pin
amaneet27-Sep-06 0:56
amaneet27-Sep-06 0:56 
AnswerRe: module file Pin
minhpc_bk27-Sep-06 19:35
minhpc_bk27-Sep-06 19:35 
QuestionHow to delete items in gridview with one delete button Pin
sabby200627-Sep-06 0:44
sabby200627-Sep-06 0:44 
AnswerRe: How to delete items in gridview with one delete button Pin
Nizha J27-Sep-06 1:49
Nizha J27-Sep-06 1:49 

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.