No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
nukewarm takes e-machine and throws it in garbage bag.
ASP.Net does this right out of the box doesn't it? <asp:Login>...</asp:login>
I have spent most of my web site development days using Data Access Pages. Now that they apparently suck so bad I have installed a new IIS server and a new SQL server at work and I'm working to recreate all of my work in this new ASP environment everyone …
If it is a pop up window then the window.opener.GetElementById("Your Control Here") works pretty well.
I'm not sure what you mean. If you want to create a list from dynamic data or get data from a dynamic list? From data to list... <html><body><form> <asp:ListBox ID="ListBox1" runat="server></asp:ListBox> </form></body></html> protected void page_load(object sender, EventArgs e) { // Defining DataSources is very large in scope but to get …
Do the passwords/usernames have to be secure? Encrypted? If so you are talking about an awful lot of lines of code.
Forget about trying to use javascript in these asp pages. The better you get at c# the more you can fully use the .Nets. This should work. Insert code right above the <html...> tag. [ICODE]<script runat="server"> protected void Page_Load(object sender, EventArgs e) { SetFocus(Login1.FindControl("UserName")); } </script>[/ICODE] [QUOTE=Gowrishankar;233036]Hi, How to set …
The End.
nukewarm