Click here to Skip to main content
15,921,884 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Meta Tag For Refresh Problem Pin
Saul Johnson20-Jul-08 11:13
Saul Johnson20-Jul-08 11:13 
QuestionDatagrid Export to Excel [modified] Pin
Tim Carmichael16-Jul-08 5:52
Tim Carmichael16-Jul-08 5:52 
AnswerRe: Datagrid Export to Excel Pin
led mike16-Jul-08 6:09
led mike16-Jul-08 6:09 
GeneralRe: Datagrid Export to Excel Pin
Tim Carmichael16-Jul-08 6:19
Tim Carmichael16-Jul-08 6:19 
GeneralRe: Datagrid Export to Excel Pin
goodideadave18-Jul-08 13:59
goodideadave18-Jul-08 13:59 
QuestionMultiple languages support Pin
Mr.Sam15-Jul-08 23:50
Mr.Sam15-Jul-08 23:50 
AnswerRe: Multiple languages support Pin
NeverHeardOfMe16-Jul-08 7:26
NeverHeardOfMe16-Jul-08 7:26 
QuestionHow to Validate URL?? Pin
varshavmane15-Jul-08 23:25
varshavmane15-Jul-08 23:25 
Hello All,

I need to validate

http://www.pfizer.com/news/rss_article.jsp?rssUrl=http://mediaroom.pfizer.com/portal/site/pfizer/index.jsp?ndmViewId=news_view&newsId=20080610006500&newsLang=en

URL and also http://www.pfizer.com/news/rss_article.jsp

Below is the code which I am using but it validates first one but not the second one.

function ValidateURL()
{
var Url = "(((ht|f)tp(s?):\/\/)|(www\.[^ \[\]\(\)\n\r\t]+)|(([012]?[0-9]{1,2}\.){3}[012]?[0-9]{1,2})\/)([^ \[\]\(\),;"'<>\n\r\t]+)([^\. \[\]\(\),;"'<>\n\r\t])|(([012]?[0-9]{1,2}\.){3}[012]?[0-9]{1,2})";
var tempURL=document.getElementById("ctl00_ContentPlaceHolder1_txteventlink").value;
var matchURL=tempURL.match(Url);
if(matchURL==null)
{
alert("Web URL does not look valid");
document.getElementById("ctl00_ContentPlaceHolder1_txteventlink").value="http://";
document.getElementById("ctl00_ContentPlaceHolder1_txteventlink").focus();
return false;
}
}

Please help me....

Thanks in advance...
QuestionHow to bypass confirmation message in asp.net Pin
hifiger200415-Jul-08 19:43
hifiger200415-Jul-08 19:43 
QuestionFetching Data From database to an Array without using any ADO objects Pin
Silver Pearl15-Jul-08 19:37
Silver Pearl15-Jul-08 19:37 
Questionhow can catch hostname mac address of pc Pin
idsanjeevjha15-Jul-08 19:21
idsanjeevjha15-Jul-08 19:21 
Questionspreadsheet directly into web design Pin
softfalls15-Jul-08 11:35
softfalls15-Jul-08 11:35 
QuestionCSS question ? Pin
Mohammad Dayyan15-Jul-08 9:49
Mohammad Dayyan15-Jul-08 9:49 
AnswerRe: CSS question ? Pin
David Muir15-Jul-08 10:09
David Muir15-Jul-08 10:09 
GeneralRe: CSS question ? Pin
Mohammad Dayyan15-Jul-08 10:26
Mohammad Dayyan15-Jul-08 10:26 
GeneralRe: CSS question ? Pin
David Muir15-Jul-08 10:52
David Muir15-Jul-08 10:52 
GeneralRe: CSS question ? Pin
Mohammad Dayyan15-Jul-08 11:05
Mohammad Dayyan15-Jul-08 11:05 
GeneralRe: CSS question ? Pin
David Muir15-Jul-08 11:13
David Muir15-Jul-08 11:13 
GeneralRe: CSS question ? Pin
Mohammad Dayyan15-Jul-08 11:17
Mohammad Dayyan15-Jul-08 11:17 
AnswerRe: CSS question ? Pin
Perspx15-Jul-08 10:36
Perspx15-Jul-08 10:36 
GeneralRe: CSS question ? Pin
Mohammad Dayyan15-Jul-08 10:48
Mohammad Dayyan15-Jul-08 10:48 
GeneralRe: CSS question ? Pin
Perspx15-Jul-08 10:58
Perspx15-Jul-08 10:58 
GeneralRe: CSS question ? Pin
Mohammad Dayyan15-Jul-08 11:04
Mohammad Dayyan15-Jul-08 11:04 
GeneralRe: CSS question ? Pin
Perspx15-Jul-08 20:03
Perspx15-Jul-08 20:03 
GeneralRe: CSS question ? Pin
Mohammad Dayyan16-Jul-08 1:27
Mohammad Dayyan16-Jul-08 1:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.