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
~89 People Reached
Favorite Forums
Favorite Tags
Member Avatar for shweta_online

amespace WebApplication4 { public partial class _Default : System.Web.UI.Page { public static bool UrlIsValid(string url) { bool br = false; try { IPHostEntry ipHost = Dns.Resolve(url); br = true; } catch (SocketException) { br = false; } return br; } private void Page_Load(object sender, EventArgs e) { string url = …

Member Avatar for dnanetwork
0
89