help me, i want to get the username of the people who login suscess in to a textbox, i try to make it through the session , but it s not work , i do it in aspx.vb VS2010
View Complete Post
Hi,
How can I get all the textboxes inside a create user wizard control using getElementsByTagName().
Below is my JQuery code:
<script type="text/javascript"> function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } function prepareInputsForHints() { var inputs = document.getElementsByTagName("asp:TextBox"); for (var i = 0; i < inputs.length; i++) { inputs[i].onfocus = function() { this.parentNode.getElementsByTagName("span")[0].style.display = "inline"; } inputs[i].onblur = function() { this.parentNode.getElementsByTagName("span")[0].style.display = "none"; } } } addLoadEvent(prepareInputsForHints); </script>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
hi
i am using create user wizard and capturing other information within content template when a new user
registers. Some of the textboxes are binded to required field validators.
there is a validation control on the page and ShowMessage box is True.
If they dont complete some of the text boxes then the message box pops Up with the error message.
It does not however include information errors like "User already exists" or Email address already exists
from the create user wizard membership UserName and Password Textboxes
is it possilbe to hook all of these up so I get one message box with all errors including membership ones?
thanks
Any Ideas on how to fix this issue?
Visual Studio 2005, Windows 7 64bit, SQL Server 2005 Express
Cannot open database "sql2" requested by the login. The login failed.Login failed for user 'IIS APPPOOL\DefaultAppPool'.
Hi everyone,
I hope you can help me, I tried Google, but none of the solutions worked. Using VB.net and Membership, I have a login control in my master page with a remember me check box. When I check this box and login, some pages indicate that I am not logged in. If I go to another page, it will then indicate that I am still logged in. I have isolated one page that always indicates I am not logged in the first time I visit it, but if log in a second time and then go to it, it will finally recognize me as a user that is properly logged in.
Some pages that this occurs on is in the top level, some pages are in a sub folder.
My MasterPage has the following Form Code:
<body bgcolor="#E0ECF9" topmargin="0" leftmargin="0">
<form id="form1" runat="server">
My Aspx file has a troubleshooting label, several Gridviews and several DetailViews:
<asp:Label ID="lblErRep" runat="server" Text=""></asp:Label>
My aspx.vb file has 1 line of code (Protec
Hi All,
Thank you for advance.
I created a widows service for mail schedule with c#.net and sql server 2005 and it is working fine for past one year. now sometimes i am getting the "System.Data.SqlClient.SqlException: Login failed for user '<UserName>'. Reason: The account is disabled." error. then i restarted the windows service manually and working. what is the problem in my sql server connection and how to fix that issue?
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend