Click here to Skip to main content
15,898,943 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Working same project by multiple programmers simultaniously Pin
Vipin.d10-Dec-07 20:00
Vipin.d10-Dec-07 20:00 
GeneralRe: Working same project by multiple programmers simultaniously Pin
N.Surendra Prasad10-Dec-07 21:54
N.Surendra Prasad10-Dec-07 21:54 
QuestionHow to display a alert Message while clicking on node of tree view Pin
Rajesh_K_Sharma10-Dec-07 18:03
Rajesh_K_Sharma10-Dec-07 18:03 
AnswerRe: How to display a alert Message while clicking on node of tree view Pin
Sathesh Sakthivel10-Dec-07 18:05
Sathesh Sakthivel10-Dec-07 18:05 
Questionhow to include Report Item toolbar for rdlc file??? Pin
zareee10-Dec-07 17:50
zareee10-Dec-07 17:50 
QuestionHow to Find Control in a page which is inherited from MasterPage Pin
Kuricheti10-Dec-07 17:43
Kuricheti10-Dec-07 17:43 
GeneralRe: How to Find Control in a page which is inherited from MasterPage Pin
Sun Rays10-Dec-07 17:52
Sun Rays10-Dec-07 17:52 
GeneralRe: How to Find Control in a page which is inherited from MasterPage Pin
Rajesh_K_Sharma10-Dec-07 18:02
Rajesh_K_Sharma10-Dec-07 18:02 
Hi Kuricheti


try this code , i think this will help you.

protected void Button1_Click(object sender, EventArgs e)
{


GetControlval(this.Controls);
}


public void GetControlval(ControlCollection Controlcol)
{
string strTextBox;
foreach (System.Web.UI.Control ctl in Controlcol)
{
if (ctl != null)
{
if (ctl.ToString().ToLower().EndsWith("textbox"))
strTextBox = ((System.Web.UI.WebControls.TextBox)ctl).Text;

}

if (ctl.HasControls())
{
GetControlval(ctl.Controls );
}
}
}

rajesh

GeneralRe: How to Find Control in a page which is inherited from MasterPage Pin
firozu10-Dec-07 19:32
firozu10-Dec-07 19:32 
GeneralRe: How to Find Control in a page which is inherited from MasterPage Pin
vincyjinoy11-Dec-07 5:22
vincyjinoy11-Dec-07 5:22 
QuestionHow can i add description????? Pin
Vanamaindia10-Dec-07 17:00
Vanamaindia10-Dec-07 17:00 
AnswerRe: How can i add description????? Pin
Sun Rays10-Dec-07 17:47
Sun Rays10-Dec-07 17:47 
GeneralRe: How can i add description????? Pin
Vanamaindia10-Dec-07 18:14
Vanamaindia10-Dec-07 18:14 
GeneralRe: How can i add description????? Pin
Michael Sync10-Dec-07 18:50
Michael Sync10-Dec-07 18:50 
QuestionShould my base class inherit System.Web.UI? Pin
test198510-Dec-07 16:23
test198510-Dec-07 16:23 
AnswerRe: Should my base class inherit System.Web.UI? Pin
Michael Sync10-Dec-07 16:30
Michael Sync10-Dec-07 16:30 
AnswerRe: Should my base class inherit System.Web.UI? Pin
N a v a n e e t h10-Dec-07 18:00
N a v a n e e t h10-Dec-07 18:00 
Questionhow to show message box when data is in gridview on temporary basis. Pin
$unil Dhiman10-Dec-07 13:31
$unil Dhiman10-Dec-07 13:31 
GeneralRe: how to show message box when data is in gridview on temporary basis. Pin
$unil Dhiman10-Dec-07 17:11
$unil Dhiman10-Dec-07 17:11 
QuestionHow to display a message box when record is temporary stored in session/grid view Pin
Rajesh_K_Sharma10-Dec-07 13:24
Rajesh_K_Sharma10-Dec-07 13:24 
AnswerRe: How to display a message box when record is temporary stored in session/grid view Pin
Michael Sync10-Dec-07 15:39
Michael Sync10-Dec-07 15:39 
GeneralRe: How to display a message box when record is temporary stored in session/grid view Pin
Rajesh_K_Sharma10-Dec-07 17:07
Rajesh_K_Sharma10-Dec-07 17:07 
GeneralProblem with the page's style Pin
Payal_e_m10-Dec-07 12:00
Payal_e_m10-Dec-07 12:00 
GeneralRe: Problem with the page's style Pin
Michael Sync10-Dec-07 15:24
Michael Sync10-Dec-07 15:24 
QuestionHow to access API functions in a C++ ActiveX Control from ASP.NET Page using either C# or VB Pin
Member 253045010-Dec-07 10:22
Member 253045010-Dec-07 10:22 

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.