Click here to Skip to main content
15,925,602 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to use Datacolumn Pin
gratisaccount15-Oct-07 20:30
gratisaccount15-Oct-07 20:30 
GeneralRe: How to use Datacolumn Pin
jebin k16-Oct-07 22:36
jebin k16-Oct-07 22:36 
QuestionFile upload contorl in 2.0 Pin
kinnuP15-Oct-07 18:42
kinnuP15-Oct-07 18:42 
AnswerRe: File upload contorl in 2.0 Pin
kuwl_mark15-Oct-07 19:04
kuwl_mark15-Oct-07 19:04 
GeneralRe: File upload contorl in 2.0 Pin
kinnuP15-Oct-07 19:09
kinnuP15-Oct-07 19:09 
QuestionUse one datagrid in another datagrid(urgent!) Pin
Milind Panchal15-Oct-07 18:32
Milind Panchal15-Oct-07 18:32 
AnswerRe: Use one datagrid in another datagrid(urgent!) Pin
kuwl_mark15-Oct-07 19:07
kuwl_mark15-Oct-07 19:07 
AnswerRe: Use one datagrid in another datagrid(urgent!) Pin
gratisaccount15-Oct-07 19:10
gratisaccount15-Oct-07 19:10 
In gridview you can do it following manner:

On Rowdatabound:
protected void ParentGridView_RowDataBound(object sender, GridViewRowEventArgs e)<br />
{<br />
  if (e.Row.RowType == DataControlRowType.DataRow)<br />
     {<br />
      GridView ChildGridView = (GridView)e.Row.FindControl("NestedGridView");<br />
     }<br />
}


Here "NestedGridView" is the gridview Control have created in aspx file.
And "ChildGridView" object which you have created to play in .cs file.


Hope This will help you.
QuestionEncrypting and Decrypting Configuration Sections Pin
Clickok15-Oct-07 18:05
Clickok15-Oct-07 18:05 
QuestionWhere is the TreeNode Style property? Pin
azayas4815-Oct-07 16:09
azayas4815-Oct-07 16:09 
QuestionASP.NET Pin
joesolly15-Oct-07 13:09
joesolly15-Oct-07 13:09 
AnswerRe: ASP.NET Pin
Sandeep Akhare15-Oct-07 19:46
Sandeep Akhare15-Oct-07 19:46 
GeneralRe: ASP.NET Pin
joesolly15-Oct-07 20:06
joesolly15-Oct-07 20:06 
GeneralRe: ASP.NET Pin
Sandeep Akhare15-Oct-07 21:07
Sandeep Akhare15-Oct-07 21:07 
AnswerRe: ASP.NET Pin
joesolly15-Oct-07 19:58
joesolly15-Oct-07 19:58 
AnswerRe: ASP.NET Pin
Sathesh Sakthivel15-Oct-07 20:26
Sathesh Sakthivel15-Oct-07 20:26 
QuestionNewbie: How do I get Record Count from paged GridView with SqlDataSource data source? Pin
Brian C Hart15-Oct-07 12:20
professionalBrian C Hart15-Oct-07 12:20 
QuestionCrystal reports toolbar button not working Pin
Richard Jones15-Oct-07 8:40
Richard Jones15-Oct-07 8:40 
QuestionEmbedded forms Pin
ss.mmm15-Oct-07 7:52
ss.mmm15-Oct-07 7:52 
AnswerRe: Embedded forms Pin
Christian Graus15-Oct-07 10:24
protectorChristian Graus15-Oct-07 10:24 
Questionhelp with sending emails Pin
kaaj2115-Oct-07 7:39
kaaj2115-Oct-07 7:39 
AnswerRe: help with sending emails Pin
Ennis Ray Lynch, Jr.15-Oct-07 9:21
Ennis Ray Lynch, Jr.15-Oct-07 9:21 
AnswerRe: help with sending emails Pin
brhnz15-Oct-07 9:51
brhnz15-Oct-07 9:51 
AnswerRe: help with sending emails Pin
cst_cfit16-Oct-07 19:11
cst_cfit16-Oct-07 19:11 
QuestionMultithreading Asp .Net apps Pin
Vodstok15-Oct-07 6:03
Vodstok15-Oct-07 6:03 

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.