Click here to Skip to main content
16,004,944 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
widget123-Jun-06 4:22
widget123-Jun-06 4:22 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 4:53
Dustin Metzgar23-Jun-06 4:53 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
widget123-Jun-06 5:06
widget123-Jun-06 5:06 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 5:12
Dustin Metzgar23-Jun-06 5:12 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
widget123-Jun-06 5:23
widget123-Jun-06 5:23 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 5:31
Dustin Metzgar23-Jun-06 5:31 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
widget123-Jun-06 5:45
widget123-Jun-06 5:45 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 6:00
Dustin Metzgar23-Jun-06 6:00 
widget1 wrote:
a linkbutton causes a postback and ... a hyperlink only causes a page refresh

Those things are the same in your case. A typical hyperlink should send you to a new page, but you're detecting that it was clicked and handling it server side, which means the form is being submitted.

widget1 wrote:
How can I hold the ID value from the first set of loops into the second?

Where you do this:
e_link.ID = "Row=" & i.ToString & "Column=" & k.ToString

You are creating the ID. Simply copy the code you use to create that ID into the second loop:
e_link = CType(FindControl("Row=" & i.ToString & "Column=" & k.ToString), HyperLink)




Logifusion[^]
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
widget123-Jun-06 6:07
widget123-Jun-06 6:07 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 6:24
Dustin Metzgar23-Jun-06 6:24 
GeneralRe: How to access a control created dynamically in a dynamically created table Pin
Dustin Metzgar23-Jun-06 5:39
Dustin Metzgar23-Jun-06 5:39 
QuestionNeed your help Pin
Rohit_daga23-Jun-06 1:50
Rohit_daga23-Jun-06 1:50 
AnswerRe: Need your help Pin
varshavmane23-Jun-06 3:19
varshavmane23-Jun-06 3:19 
AnswerRe: Need your help Pin
l0kke23-Jun-06 5:28
l0kke23-Jun-06 5:28 
Questiondeleting data base columns depends on check box value in a datagrid Pin
peter rankel23-Jun-06 1:44
peter rankel23-Jun-06 1:44 
AnswerRe: deleting data base columns depends on check box value in a datagrid [modified] Pin
mehnazash23-Jun-06 2:49
mehnazash23-Jun-06 2:49 
QuestionJavaScript Pin
nevinda23-Jun-06 1:34
nevinda23-Jun-06 1:34 
AnswerRe: JavaScript Pin
Vasudevan Deepak Kumar23-Jun-06 2:08
Vasudevan Deepak Kumar23-Jun-06 2:08 
Questiondynamic Controls Pin
albCode23-Jun-06 1:27
albCode23-Jun-06 1:27 
AnswerRe: dynamic Controls Pin
l0kke23-Jun-06 5:44
l0kke23-Jun-06 5:44 
GeneralRe: dynamic Controls Pin
albCode25-Jun-06 20:48
albCode25-Jun-06 20:48 
AnswerRe: dynamic Controls Pin
minhpc_bk23-Jun-06 12:36
minhpc_bk23-Jun-06 12:36 
GeneralRe: dynamic Controls Pin
albCode25-Jun-06 20:49
albCode25-Jun-06 20:49 
Question.net 2.0 GridView Pin
fmardani23-Jun-06 1:25
fmardani23-Jun-06 1:25 
AnswerRe: .net 2.0 GridView Pin
minhpc_bk23-Jun-06 12:34
minhpc_bk23-Jun-06 12:34 

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.