Click here to Skip to main content
15,878,959 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Format DataTextField in dropdown in asp.net Pin
Anurag Gandhi5-Feb-10 1:55
professionalAnurag Gandhi5-Feb-10 1:55 
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 
Here is the user control with the link button on it!

public partial class ucCustomerDetails : System.Web.UI.UserControl
{

protected override void CreateChildControls( )
{
base.CreateChildControls( );

this.lnkShowAllCust.ID = "lnkShowAllCust";
this.lnkShowAllCust.Click += new EventHandler(this.lnkShowAllCust_Click);
this.Controls.Add(lnkShowAllCust);
}

protected override void OnInit (EventArgs e)
{
CreateChildControls( );
base.OnInit(e);
}

protected override void OnLoad(EventArgs e)
{
base.EnsureChildControls( );
}

protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
CreateChildControls( );
}
}

protected void lnkShowAllCust_Click(object sender, EventArgs e)
{
this.OnCustShowAllClicked(new EventArgs ( ));
}

protected virtual void OnCustShowAllClicked(EventArgs args)
{
if (this.ViewAllClicked != null)
{
this.ViewAllClicked(this, args);
}
}

public event EventHandler ViewAllClicked;

}

I have deleted other stuff that is on it, but these other controls have nothing to do with the link button
GeneralRe: Link Button on User Control not firing? Pin
Ravindra Nidhonkar5-Feb-10 1:04
Ravindra Nidhonkar5-Feb-10 1:04 
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 

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.