<%@ Page Language="C#" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <script runat="server"> protected override void OnInit(EventArgs e) { base.OnInit(e); string js = this.Request.Form[this.htnEnableJavaScripts.UniqueID]; if (!string.IsNullOrEmpty(js) && js.Equals("yes")) { this.cusValidator.IsValid = true; this.cusValidator.Enabled = false; } } protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); this.ClientScript.RegisterStartupScript(this.GetType(), this.GetType().Name, string.Format("document.getElementById('{0}').value = 'yes';", this.htnEnableJavaScripts.ClientID), true); } </script> </head> <body> <form id="form1" runat="server"> <div> <asp:Button runat="server" ID="btnPostback" Text="Postback" /> </div> <asp:HiddenField runat="server" ID="htnEnableJavaScripts" Value="no" /> </form> </body> </html>
Monday, July 26, 2010
How to find java scripts enable in a postback - Asp.net, Javascripts
Subscribe to:
Post Comments (Atom)
Azure Storage Account Types
Defferent Types of Blobs Block blobs store text and binary data. Block blobs are made up of blocks of data that can be managed individually...
-
Why we need asynchronous tasks? Execute a time consuming operations in parallel to the CLR thread which execute the request If you have ...
-
Demo: I was thinking a way to show images before actually uploading them to server. I would say to preview images using javascript. Obv...
No comments:
Post a Comment