(Very Urgent)server control events are not firing
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
I'm not sure, but first you should check if those control are set their attribute "run at = server" or not << >>
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
-
I'm not sure, but first you should check if those control are set their attribute "run at = server" or not << >>
runat="server" is set
-
When you say that postback is not happening, do you mean that the page never reloads, or do you mean that no events fire when the page reloads? --- b { font-weight: normal; }
page never reloads. i.e onClick it act just like an HtmlButton.
-
runat="server" is set
it's really strange, but you might try to re-register asp.net with IIS Gud luke << >>
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
Hi, I don't know the exact cause, but even i had the same problem i copied the control to another page and it works......... (It has something to do with Tag in header section of page) I hope this will help u....... Regards, Ritesh
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
Hi, Check once at InitializeComponent() method. In that check for ur button or linkbutton handler. private void InitializeComponent() { this.ddl.SelectedIndexChanged += new System.EventHandler (this.ddl_SelectedIndexChanged); this.Load += new System.EventHandler(this.Page_Load); } Bye Pessi.
-
Hi, I don't know the exact cause, but even i had the same problem i copied the control to another page and it works......... (It has something to do with Tag in header section of page) I hope this will help u....... Regards, Ritesh
I already try this but not working
-
Hi, i m having a strange problem in my Web Application(using Vb.Net). on a particular page server controls(link button,button) events are not firing i.e postback is not happening.There is no Javascript error on it. Thanks in Advance. :confused:
Put in line statement in your code: <%# GetAString(); %> then coose view source from the menu in IE if you see that code then you need to run regiis. Make sure AutoPostBack is set to true. DOuble click on the button in web from view to have the IDE create your handler. And put a break point sindie there to see if it actually hits 1 line of code equals many bugs. So don't write any!! -- modified at 9:12 Tuesday 28th February, 2006
-
page never reloads. i.e onClick it act just like an HtmlButton.
Are you sure that there are no javascript errors? Have you changed the settings in the browser so that the javascript errors aren't only shown in the status bar? Have you examined the generated code to see what it does? Do you have any validators on the page? --- b { font-weight: normal; }