Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached

7 Posted Topics

Member Avatar for kpack08
Member Avatar for johnny.g

ASP.Net does this right out of the box doesn't it? <asp:Login>...</asp:login>

Member Avatar for SheSaidImaPregy
0
196
Member Avatar for nukewarm

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 …

Member Avatar for nukewarm
0
105
Member Avatar for arunsolanki31

If it is a pop up window then the window.opener.GetElementById("Your Control Here") works pretty well.

Member Avatar for nukewarm
0
83
Member Avatar for vadiraj86

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 …

Member Avatar for Ramy Mahrous
0
103
Member Avatar for aminit

Do the passwords/usernames have to be secure? Encrypted? If so you are talking about an awful lot of lines of code.

Member Avatar for nukewarm
0
115
Member Avatar for Gowrishankar

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 …

Member Avatar for nukewarm
0
2K

The End.