Click here to Skip to main content
15,886,578 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionLink Button on User Control not firing? Pin
AndyASPVB4-Feb-10 22:03
AndyASPVB4-Feb-10 22:03 
AnswerRe: Link Button on User Control not firing? Pin
Rhys Jacob4-Feb-10 22:26
Rhys Jacob4-Feb-10 22:26 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB4-Feb-10 22:41
AndyASPVB4-Feb-10 22:41 
GeneralRe: Link Button on User Control not firing? Pin
Rhys Jacob4-Feb-10 22:45
Rhys Jacob4-Feb-10 22:45 
GeneralRe: Link Button on User Control not firing? Pin
Ravindra Nidhonkar5-Feb-10 0:37
Ravindra Nidhonkar5-Feb-10 0:37 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 0:53
AndyASPVB5-Feb-10 0:53 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 0:52
AndyASPVB5-Feb-10 0:52 
GeneralRe: Link Button on User Control not firing? Pin
Ravindra Nidhonkar5-Feb-10 1:04
Ravindra Nidhonkar5-Feb-10 1:04 
Try following code:


protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            LinkButton lnk = new LinkButton();
            lnk.Text = "My Link";
            lnk.Click += new EventHandler(lnk_Click);
            plcHld.Controls.Add(lnk);
        }

        void lnk_Click(object sender, EventArgs e)
        {
            lblMessage.Text = "Link Clicked";
        }

GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 1:31
AndyASPVB5-Feb-10 1:31 
GeneralRe: Link Button on User Control not firing? Pin
Rhys Jacob5-Feb-10 1:57
Rhys Jacob5-Feb-10 1:57 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 2:30
AndyASPVB5-Feb-10 2:30 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 3:33
AndyASPVB5-Feb-10 3:33 
GeneralRe: Link Button on User Control not firing? Pin
Rhys Jacob5-Feb-10 5:47
Rhys Jacob5-Feb-10 5:47 
GeneralRe: Link Button on User Control not firing? Pin
AndyASPVB5-Feb-10 5:57
AndyASPVB5-Feb-10 5:57 
QuestionOn demand combo in asp.net Pin
Tridip Bhattacharjee4-Feb-10 21:24
professionalTridip Bhattacharjee4-Feb-10 21:24 
AnswerRe: On demand combo in asp.net Pin
sashidhar4-Feb-10 21:58
sashidhar4-Feb-10 21:58 
AnswerRe: On demand combo in asp.net Pin
Anurag Gandhi4-Feb-10 22:05
professionalAnurag Gandhi4-Feb-10 22:05 
QuestionFile download completed in client machine or not detection Pin
Tridip Bhattacharjee4-Feb-10 21:23
professionalTridip Bhattacharjee4-Feb-10 21:23 
Questionscrren shot aspx page ? Pin
Subin Mavunkal4-Feb-10 21:23
Subin Mavunkal4-Feb-10 21:23 
AnswerRe: scrren shot aspx page ? Pin
R. Giskard Reventlov4-Feb-10 21:26
R. Giskard Reventlov4-Feb-10 21:26 
GeneralRe: scrren shot aspx page ? Pin
yrishi4-Feb-10 22:10
yrishi4-Feb-10 22:10 
GeneralRe: scrren shot aspx page ? Pin
R. Giskard Reventlov4-Feb-10 23:18
R. Giskard Reventlov4-Feb-10 23:18 
GeneralRe: scrren shot aspx page ? Pin
yrishi4-Feb-10 23:28
yrishi4-Feb-10 23:28 
GeneralRe: scrren shot aspx page ? Pin
R. Giskard Reventlov4-Feb-10 23:55
R. Giskard Reventlov4-Feb-10 23:55 
GeneralRe: scrren shot aspx page ? Pin
Subin Mavunkal4-Feb-10 23:33
Subin Mavunkal4-Feb-10 23:33 

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.