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

ASP.NET

 
GeneralRe: Placeholder Pin
Christian Graus30-Jul-09 11:35
protectorChristian Graus30-Jul-09 11:35 
GeneralRe: Placeholder Pin
comp_j30-Jul-09 12:17
comp_j30-Jul-09 12:17 
GeneralRe: Placeholder Pin
Christian Graus30-Jul-09 12:28
protectorChristian Graus30-Jul-09 12:28 
QuestionViewState Probelm in GridView Pin
Hemant_ec4830-Jul-09 9:37
Hemant_ec4830-Jul-09 9:37 
AnswerRe: ViewState Probelm in GridView Pin
Christian Graus30-Jul-09 10:50
protectorChristian Graus30-Jul-09 10:50 
GeneralRe: ViewState Probelm in GridView Pin
Hemant_ec4830-Jul-09 11:32
Hemant_ec4830-Jul-09 11:32 
GeneralRe: ViewState Probelm in GridView Pin
Christian Graus30-Jul-09 11:36
protectorChristian Graus30-Jul-09 11:36 
QuestionDynamic link button controls Pin
Ersan Ercek30-Jul-09 8:03
Ersan Ercek30-Jul-09 8:03 
Hello I am trying to create linkbutton controls that are supposed to fire method. I add them to pageload however I am told that I should add them before it. I google the lifecycle and I found 2 events Init and PreLoad, I tried them and they are really fired before page_load however this time the controls even do not appear. here is the code:

protected void Page_Preload()
{
for (int i = 1; i <= 2; i++)
{
LinkButton bottomLink = new LinkButton();
LiteralControl bottomLiteral = new LiteralControl("&nbsp;");
bottomLink.Text = i.ToString();
pnlBottom.Controls.Add(bottomLink);
pnlBottom.Controls.Add(bottomLiteral);
bottomLink.OnClientClick += new EventHandler(this.changeLink);

}
}

it is drawing me crazy please help.
AnswerRe: Dynamic link button controls Pin
Abhijit Jana30-Jul-09 8:12
professionalAbhijit Jana30-Jul-09 8:12 
GeneralRe: Dynamic link button controls Pin
Ersan Ercek30-Jul-09 8:20
Ersan Ercek30-Jul-09 8:20 
GeneralRe: Dynamic link button controls Pin
Abhijit Jana30-Jul-09 8:26
professionalAbhijit Jana30-Jul-09 8:26 
GeneralRe: Dynamic link button controls Pin
Ersan Ercek30-Jul-09 8:27
Ersan Ercek30-Jul-09 8:27 
GeneralRe: Dynamic link button controls Pin
Abhijit Jana30-Jul-09 9:01
professionalAbhijit Jana30-Jul-09 9:01 
GeneralRe: Dynamic link button controls Pin
Ersan Ercek30-Jul-09 9:17
Ersan Ercek30-Jul-09 9:17 
GeneralRe: Dynamic link button controls Pin
Ersan Ercek30-Jul-09 9:28
Ersan Ercek30-Jul-09 9:28 
GeneralRe: Dynamic link button controls Pin
Abhijit Jana30-Jul-09 9:31
professionalAbhijit Jana30-Jul-09 9:31 
GeneralRe: Dynamic link button controls Pin
Ersan Ercek30-Jul-09 9:32
Ersan Ercek30-Jul-09 9:32 
QuestionSelectedIndexChanged Event for Dropdownlist AJAX Pin
Ridge Howison30-Jul-09 7:06
Ridge Howison30-Jul-09 7:06 
AnswerRe: SelectedIndexChanged Event for Dropdownlist AJAX Pin
Abhijit Jana30-Jul-09 8:14
professionalAbhijit Jana30-Jul-09 8:14 
AnswerRe: SelectedIndexChanged Event for Dropdownlist AJAX Pin
Abhishek Sur30-Jul-09 8:59
professionalAbhishek Sur30-Jul-09 8:59 
QuestionSystem.Runtime.InteropServices.COMException: Cannot activate application Pin
vikash_singh30-Jul-09 4:56
vikash_singh30-Jul-09 4:56 
AnswerRe: System.Runtime.InteropServices.COMException: Cannot activate application Pin
Abhishek Sur30-Jul-09 5:00
professionalAbhishek Sur30-Jul-09 5:00 
GeneralRe: System.Runtime.InteropServices.COMException: Cannot activate application Pin
vikash_singh30-Jul-09 5:33
vikash_singh30-Jul-09 5:33 
GeneralRe: System.Runtime.InteropServices.COMException: Cannot activate application Pin
vikash_singh30-Jul-09 6:56
vikash_singh30-Jul-09 6:56 
GeneralRe: System.Runtime.InteropServices.COMException: Cannot activate application Pin
Abhishek Sur30-Jul-09 9:10
professionalAbhishek Sur30-Jul-09 9:10 

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.