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
~288 People Reached
Favorite Tags
asp x 4
Member Avatar for Nithyamaha

i am using windows application with c#.net i want get the system ip address and store the database This is My code using System.Text; using System.Windows.Forms; using System.Diagnostics; . . . string[] computer_name =System.Net.Dns.GetHostEntry(Process.ServerVariables["remote_addr"]).HostName.Split(new Char[] { '.' }); txt_ipaddress.Text = strClientIP.ToString() + "[" + computer_name[0].ToString() + "]"; Come to My …

Member Avatar for thines01
0
87
Member Avatar for Nithyamaha

protected void Button3_Click(object sender, EventArgs e) { GetRandomPassword(); } public static string GetRandomPassword(int length) { char[] chars = "$%#@!*abcdefghijklmnopqrstuvwxyz1234567890?;:ABCDEFGHIJKLMNOPQRSTUVWXYZ^&".ToCharArray(); string password = string.Empty; Random random = new Random(); for (int i = 0; i < length; i++) { int x = random.Next(1, chars.Length); if (!password.Contains(chars.GetValue(x).ToString())) password += chars.GetValue(x); else i--; …

Member Avatar for Nithyamaha
0
147
Member Avatar for Nithyamaha

[B]Hi I am using asp.net with c#.net my requirments is when i click the button event open the browser anyone help with me[/B]

0
54