Monday, July 26, 2010

How to find java scripts enable in a postback - Asp.net, Javascripts

<%@ 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>

No comments:

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...