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

ASP.NET

 
QuestionajaxToolkit:PopupControlExtender [modified] Pin
srinandan..31-Jan-07 22:12
srinandan..31-Jan-07 22:12 
AnswerRe: ajaxToolkit:PopupControlExtender Pin
badgrs31-Jan-07 22:39
badgrs31-Jan-07 22:39 
QuestionHow to do load balancing in an application Pin
Sylvester george31-Jan-07 21:43
Sylvester george31-Jan-07 21:43 
AnswerRe: How to do load balancing in an application Pin
badgrs31-Jan-07 22:40
badgrs31-Jan-07 22:40 
QuestionProble to clear textboxes Pin
Imran Khan Pathan31-Jan-07 21:36
Imran Khan Pathan31-Jan-07 21:36 
AnswerRe: Proble to clear textboxes Pin
Atul Kharecha31-Jan-07 21:51
Atul Kharecha31-Jan-07 21:51 
GeneralRe: Proble to clear textboxes Pin
Imran Khan Pathan31-Jan-07 22:51
Imran Khan Pathan31-Jan-07 22:51 
AnswerRe: Proble to clear textboxes Pin
szukuro31-Jan-07 22:23
szukuro31-Jan-07 22:23 
tbl.Controls only contains the controls directly contained by the table, in other words TableRows. These contain Cells, which contain the Textboxes. So either you find an easier way, like adding the Textboxes to a List, to do this or

<code>foreach (TableRow tr in tbl.Rows)
    foreach (TableCell tc in tr.Cells)
        foreach (Control txt in tc.Controls)
          if (txt is TextBox)
          {
               ((TextBox)txt).Text = String.Empty;
          }</code>

Questionprogress bar Pin
248912831-Jan-07 21:29
248912831-Jan-07 21:29 
QuestionFiring ActiveX events in HTML usingVB or javaScript Pin
Tiger45631-Jan-07 21:20
Tiger45631-Jan-07 21:20 
AnswerRe: Firing ActiveX events in HTML usingVB or javaScript Pin
Parwej Ahamad31-Jan-07 21:40
professionalParwej Ahamad31-Jan-07 21:40 
QuestionDrag and Drop Pin
R.Palanivel31-Jan-07 21:19
R.Palanivel31-Jan-07 21:19 
Questiondatabase information Pin
John Gathogo31-Jan-07 21:03
John Gathogo31-Jan-07 21:03 
AnswerRe: database information Pin
Atul Kharecha31-Jan-07 21:45
Atul Kharecha31-Jan-07 21:45 
GeneralRe: database information Pin
John Gathogo31-Jan-07 22:20
John Gathogo31-Jan-07 22:20 
QuestionShort Cut keys with Ctrl and Shift button Pin
Anas Chanawala31-Jan-07 21:02
Anas Chanawala31-Jan-07 21:02 
AnswerRe: Short Cut keys with Ctrl and Shift button Pin
Parwej Ahamad31-Jan-07 22:01
professionalParwej Ahamad31-Jan-07 22:01 
GeneralRe: Short Cut keys with Ctrl and Shift button Pin
Anas Chanawala31-Jan-07 22:17
Anas Chanawala31-Jan-07 22:17 
GeneralRe: Short Cut keys with Ctrl and Shift button Pin
Parwej Ahamad31-Jan-07 23:12
professionalParwej Ahamad31-Jan-07 23:12 
QuestionJavacript in Asp.net [modified] Pin
AnhTin31-Jan-07 20:54
AnhTin31-Jan-07 20:54 
AnswerRe: Javacript in Asp.net Pin
Parwej Ahamad31-Jan-07 21:55
professionalParwej Ahamad31-Jan-07 21:55 
QuestionCokkies Related Pin
RaviJJain31-Jan-07 20:37
RaviJJain31-Jan-07 20:37 
GeneralRe: Cokkies Related Pin
DavidNohejl1-Feb-07 11:38
DavidNohejl1-Feb-07 11:38 
Questionddl with grid Pin
praveenanand31-Jan-07 19:59
praveenanand31-Jan-07 19:59 
AnswerRe: ddl with grid Pin
www.Developerof.NET31-Jan-07 20:14
www.Developerof.NET31-Jan-07 20:14 

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.