Click here to Skip to main content
15,899,679 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Dynamic link button controls Pin
Abhijit Jana30-Jul-09 8:12
professionalAbhijit Jana30-Jul-09 8:12 
Ersan Ercek wrote:
protected void Page_Preload()


Where is parameter Object and EventArgs ?

Try this. Its work for me Big Grin | :-D
protected void Page_Preload(object sender, EventArgs e)
    {
        for (int i = 1; i <= 2; i++)
        {
            LinkButton bottomLink = new LinkButton();
            LiteralControl bottomLiteral = new LiteralControl(" ");
            bottomLink.Text = i.ToString();
            pnlBottom.Controls.Add(bottomLink);
            pnlBottom.Controls.Add(bottomLiteral);
            bottomLink.Click += new EventHandler(bottomLink_Click);
         }
    }


I will suggest you to create all the control on Pre_Init()

Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
View My Latest Article

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 
GeneralRe: System.Runtime.InteropServices.COMException: Word has encountered the problem Pin
vikash_singh30-Jul-09 23:16
vikash_singh30-Jul-09 23:16 

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.