![]() | | ||||||||
| | #1 |
| HyperActive Warrior War Room Member Join Date: Jan 2009
Posts: 152
Thanks: 1
Thanked 50 Times in 13 Posts
|
Thanks for everyone who helped me with the first problem but I have one more. I need to validate that a url is typed into the text box before a user clicks on the button to send the url to the webbrowser control. basically I need it to do this.... When a user types in the complete url http://www.yoursite.com and then hits the go button it will take them to the url. But if they type in anything but a valid url I want it to display a message box and preventing them from visiting a page. If anyone types in anything but a valid url the program will crash. How do I validate that it is a valid url and not garbage. Thanks |
| | |
| | #2 |
| Active Warrior War Room Member Join Date: Nov 2009 Location: UK
Posts: 51
Thanks: 0
Thanked 7 Times in 7 Posts
|
Hi, try pinging the url before you preform the action. There are a few php scripts out there that can ping addresses to see if there is a response. I would personally cURL the url to see if i get anything back other than a 404 error
|
| | |
| | #3 |
| HyperActive Warrior War Room Member Join Date: Jan 2009
Posts: 152
Thanks: 1
Thanked 50 Times in 13 Posts
|
i am working in vb.net writing an exe program. I am using a webbrowser control, text box and a button.
|
| | |
| | #4 |
| Warrior Member Join Date: Oct 2009
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
|
You can do something like this: If Texbox1.Text.Substring(0,7) = "hxxp://" Or Textbox1.Text.Substring(0, 4) = "wwvv." Then MessageBox.Show("This is a URL") End If The code checks the first letters of your Textbox1, if it begins with hxxp:// or wwvv. then it is deemed as a valid URL. If you need more help just let me know, I can help when I have free time. EDIT: Change the xx to tt and vv to w, the forum wouldn't let me post a link due to my post count. |
| | |
| | #5 |
| Active Warrior War Room Member Join Date: Nov 2009 Location: Charlotte, NC, USA
Posts: 30
Thanks: 2
Thanked 4 Times in 3 Posts
|
If you really want a challenge (and earn your geek stripes) try using "Regular Expressions" - I think there are libraries available for VB.NET if that is your platform. That can validate a URL rather well with just one statement. -- Mike Smith No sig, no shirt, no sale. |
| | |
| | #6 |
| Advanced Warrior War Room Member Join Date: Dec 2008
Posts: 822
Thanks: 257
Thanked 74 Times in 64 Posts
|
Although I`m not too familiar with vb.net, I`m assuming its similar to VB6. Simply navigate to the URL, and if nothing is there, then you know its not valid. I.e., webbrowser1.navigate \"whatever.com\" then check the \'location\' attribute, etc.
|
| | |
| | #7 |
| HyperActive Warrior War Room Member Join Date: Jan 2009
Posts: 152
Thanks: 1
Thanked 50 Times in 13 Posts
|
I ended up calling a programming friend of mine who gave me the code. I had to create a function. here is the code if anyone else needs it. PrivateFunction UrlIsValid(ByVal url AsString) AsBoolean Dim is_valid AsBoolean = False If url.ToLower().StartsWith("www.") Then url = _ "http://" & url Dim web_response As HttpWebResponse = Nothing Try Dim web_request As HttpWebRequest = _ HttpWebRequest.Create(url) web_response = _ DirectCast(web_request.GetResponse(), _ HttpWebResponse) ReturnTrue Catch ex As Exception ReturnFalse Finally IfNot (web_response IsNothing) Then _ web_response.Close() EndTry EndFunction |
| | |
| | #8 | |
| Senior Warrior Member War Room Member Join Date: Sep 2008 Location: Honolulu, Hawaii, USA & Montreal Canada
Posts: 2,218
Blog Entries: 1 Thanks: 759
Thanked 724 Times in 505 Posts
| Quote:
Keep in mind that the user may enter a valid URL by clicking on an invalid hyperlink within a web page. That bad URL will probably make it past your URL format check. Beat of luck with your project... Bill | |
| | |
| | #9 |
| HyperActive Warrior War Room Member Join Date: Jan 2009
Posts: 152
Thanks: 1
Thanked 50 Times in 13 Posts
|
when someone clicks on a link in a web page that is bad will just return a page can not be displated error. That has nothing to do with the coding problem within the software.
|
| | |
| | #10 |
| article-writer-pro.com War Room Member Join Date: Oct 2007 Location: , , United Kingdom.
Posts: 1,330
Thanks: 23
Thanked 124 Times in 106 Posts
|
For php you would use regex (regular expression) to determine whether a url is in a valid format. You could then go one further by using cURL to grab the contents of the page and verify that a valid live webpage exists at the end of it. I'm creating this functionality for my latest product and it works perfectly. What platform are you wanting to code this in? web app or a windows application? |
| INDEX CHECKER v2.0 SOFTWARE: Probably the most accurate Google index checker available WATCH THE DEMO VIDEO TODAY PC Desktop Application - Built-In Backlink Verification Feature - Supports Proxies - Integrate Into Your Backlinks Indexer Account - Includes Proxy Scraper Software - Extremely Accurate ONLY $17 ONE-TIME FEE! | |
| | |
| | #11 |
| Active Warrior War Room Member Join Date: Jan 2009
Posts: 77
Thanks: 10
Thanked 5 Times in 5 Posts
|
CURL: PHP Code: |
| | |
| | #12 |
| Banned War Room Member Join Date: Oct 2009
Posts: 183
Thanks: 4
Thanked 21 Times in 19 Posts
|
You can try this regex. CODE-one linear ($urlregex): PHP Code: it will validates all this type of url ($url) PHP Code: PHP Code: the "(optional)" states that the part MAY exist, but url will be valid even if it doesn't contain the part (see the valid urls above). syntax: Code: <http[s]|ftp> :// [user[:pass]@] hostname [port] [/path] [?getquery] [anchor]
-Malik PS. please tell me if it is wrong to paste the code here. and wait for some feedbacks |
| Last edited by sanjid112; 11-07-2009 at 03:47 AM. Reason: adding PS | |
| | |
| | #13 |
| Active Warrior War Room Member Join Date: Nov 2009 Location: Charlotte, NC, USA
Posts: 30
Thanks: 2
Thanked 4 Times in 3 Posts
|
Nice post, sanjid112. For VB.NET, using sanjid112's regex, this is what you need: If Not Regex.IsMatch(myURL, "^(https?|ftp)://([a-z0-9+!*(),;?&=.-]+(:[a-z0-9+!*(),;?&=.-]+)?@)?[a-z0-9+-]+(.[a-z0-9+-]+)*(:[0-9]{2,5})?(/([a-z0-9+-].?)+)*/?(?[a-z+&.-][a-z0-9;:@/&%=+.-]*)?(#[a-z_.-][a-z0-9+.-]*)?$")Then ' write your error code ' here. Else ' write your success code here End If -- Mike Smith No advertising in my Sig. What am I thinking? |
| | |
![]() |
|
| Tags |
| url, valadating |
| Thread Tools | |
| |
![]() |