Click here to Skip to main content
15,889,528 members
Home / Discussions / C#
   

C#

 
QuestionRegarding Crystel Reports Pin
A.Grover19-May-06 1:18
A.Grover19-May-06 1:18 
QuestionOptional Parameter Pin
NICE TO MEET19-May-06 1:02
NICE TO MEET19-May-06 1:02 
AnswerRe: Optional Parameter Pin
Rei Miyasaka19-May-06 1:14
Rei Miyasaka19-May-06 1:14 
AnswerRe: Optional Parameter Pin
KrIstOfK19-May-06 2:06
KrIstOfK19-May-06 2:06 
Questionhow to extract motion vector from MPEG4 video? Pin
Raùl19-May-06 0:54
Raùl19-May-06 0:54 
AnswerRe: how to extract motion vector from MPEG4 video? Pin
leppie19-May-06 1:14
leppie19-May-06 1:14 
QuestionDisplaying controls still not working Pin
Brendan Vogt19-May-06 0:48
Brendan Vogt19-May-06 0:48 
AnswerRe: Displaying controls still not working Pin
_AK_19-May-06 1:29
_AK_19-May-06 1:29 
Hi,
Have you verified that whether you are having the TextBox control in Page.Controls, because i have used like this and this is giving me correct result:

foreach (Control control in Page.Controls)
{
if(control.GetType().ToString()=="System.Web.UI.HtmlControls.HtmlForm")
{

for(int i=0; i<control.Controls.Count; i++)
{
if(control.Controls[i].GetType().ToString()=="System.Web.UI.WebControls.TextBox")
{
Response.Write(control.Controls[i].ID + "<br>");

}

}

}
}
Hope this will help you.

Best Regards,
Apurva Kaushal

-- modified at 7:31 Friday 19th May, 2006
AnswerRe: Displaying controls still not working Pin
BoneSoft19-May-06 4:54
BoneSoft19-May-06 4:54 
QuestionRe: Displaying controls still not working [modified] Pin
Brendan Vogt22-May-06 21:07
Brendan Vogt22-May-06 21:07 
QuestionHow to Increase the header height of datagrid in c# windows application Pin
Qutub19-May-06 0:14
Qutub19-May-06 0:14 
AnswerRe: How to Increase the header height of datagrid in c# windows application Pin
Mukesh Karir19-May-06 1:28
Mukesh Karir19-May-06 1:28 
QuestionInstant Messenger in C# Pin
rev 'ed18-May-06 23:59
rev 'ed18-May-06 23:59 
AnswerRe: Instant Messenger in C# Pin
Robert Rohde19-May-06 0:09
Robert Rohde19-May-06 0:09 
AnswerRe: Instant Messenger in C# Pin
Yulianto.19-May-06 0:34
Yulianto.19-May-06 0:34 
Questiondropdownlist in gridview to calculate result Pin
Ritaa18-May-06 23:32
Ritaa18-May-06 23:32 
QuestionApplication.AddChartAutoFormat in excel template Pin
kiran.v.nair18-May-06 23:23
kiran.v.nair18-May-06 23:23 
QuestionMultiple cells selction in datagrid contol Pin
buzzy8418-May-06 23:02
buzzy8418-May-06 23:02 
AnswerRe: Multiple cells selction in datagrid contol Pin
Robert Rohde18-May-06 23:44
Robert Rohde18-May-06 23:44 
AnswerRe: Multiple cells selction in datagrid contol Pin
_AK_18-May-06 23:52
_AK_18-May-06 23:52 
QuestionHow does it work open Background image in Visual Studio? Pin
Sasuko18-May-06 22:39
Sasuko18-May-06 22:39 
AnswerRe: How does it work open Background image in Visual Studio? Pin
Robert Rohde18-May-06 23:38
Robert Rohde18-May-06 23:38 
GeneralRe: How does it work open Background image in Visual Studio? Pin
Sasuko18-May-06 23:41
Sasuko18-May-06 23:41 
GeneralRe: How does it work open Background image in Visual Studio? Pin
Robert Rohde19-May-06 4:40
Robert Rohde19-May-06 4:40 
GeneralRe: How does it work open Background image in Visual Studio? Pin
Susuko19-May-06 12:01
Susuko19-May-06 12:01 

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.