Monday, May 26, 2014

textbox show using jquery

1) <asp:Label ID="lblpassword" runat="server" Text="Shekhar123"></asp:Label>
                    <input id="txtpassword" type="text" style="display: none;">
                    <a id="changepassword" href="javascript:hi();">Change Password</a>

2) <script type="text/javascript" language="javascript">
        function hi() {
            var txtPassword = $("[id*=txtpassword]");
            txtPassword.show();
        }
    </script>

assign value to session varibale in javascript

  <%Session["Plan"] = "Holistic"; %>

Friday, May 23, 2014

url not working www and without www when add in iis

1) go to edit binding add website with host1 name

2) then click add again and add host2

3)host 1: www.mysite.com
   host2 : mysite.com