Click here to Skip to main content
16,004,944 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
K V Sekhar15-Jul-08 23:23
K V Sekhar15-Jul-08 23:23 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
windhopper15-Jul-08 23:31
windhopper15-Jul-08 23:31 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
K V Sekhar15-Jul-08 23:41
K V Sekhar15-Jul-08 23:41 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
windhopper15-Jul-08 23:50
windhopper15-Jul-08 23:50 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
K V Sekhar16-Jul-08 0:09
K V Sekhar16-Jul-08 0:09 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
windhopper16-Jul-08 0:51
windhopper16-Jul-08 0:51 
GeneralRe: How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ? Pin
K V Sekhar16-Jul-08 1:37
K V Sekhar16-Jul-08 1:37 
QuestionHow to Validate this URL?? Pin
varshavmane15-Jul-08 20:43
varshavmane15-Jul-08 20:43 
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...
QuestionCall Server Side Methods on Browser close Pin
Abhijit Jana15-Jul-08 20:17
professionalAbhijit Jana15-Jul-08 20:17 
AnswerRe: Call Server Side Methods on Browser close Pin
N a v a n e e t h15-Jul-08 21:28
N a v a n e e t h15-Jul-08 21:28 
QuestionRe: Call Server Side Methods on Browser close Pin
Abhijit Jana15-Jul-08 21:40
professionalAbhijit Jana15-Jul-08 21:40 
GeneralRe: Call Server Side Methods on Browser close Pin
Abhijit Jana15-Jul-08 21:53
professionalAbhijit Jana15-Jul-08 21:53 
GeneralRe: Call Server Side Methods on Browser close Pin
N a v a n e e t h15-Jul-08 22:47
N a v a n e e t h15-Jul-08 22:47 
GeneralRe: Call Server Side Methods on Browser close Pin
Abhijit Jana15-Jul-08 23:09
professionalAbhijit Jana15-Jul-08 23:09 
GeneralRe: Call Server Side Methods on Browser close Pin
N a v a n e e t h15-Jul-08 23:21
N a v a n e e t h15-Jul-08 23:21 
QuestionHow to add Sl. No. in data grid Pin
BalasubramanianK15-Jul-08 19:56
BalasubramanianK15-Jul-08 19:56 
AnswerRe: How to add Sl. No. in data grid Pin
Imran Khan Pathan15-Jul-08 20:07
Imran Khan Pathan15-Jul-08 20:07 
GeneralRe: How to add Sl. No. in data grid Pin
BalasubramanianK15-Jul-08 20:34
BalasubramanianK15-Jul-08 20:34 
GeneralRe: How to add Sl. No. in data grid Pin
BalasubramanianK15-Jul-08 21:18
BalasubramanianK15-Jul-08 21:18 
GeneralRe: How to add Sl. No. in data grid Pin
rahul.net1115-Jul-08 21:20
rahul.net1115-Jul-08 21:20 
GeneralRe: How to add Sl. No. in data grid Pin
Imran Khan Pathan15-Jul-08 21:52
Imran Khan Pathan15-Jul-08 21:52 
GeneralRe: How to add Sl. No. in data grid Pin
BalasubramanianK15-Jul-08 22:35
BalasubramanianK15-Jul-08 22:35 
GeneralRe: How to add Sl. No. in data grid Pin
Imran Khan Pathan15-Jul-08 21:39
Imran Khan Pathan15-Jul-08 21:39 
GeneralRe: How to add Sl. No. in data grid Pin
BalasubramanianK15-Jul-08 22:36
BalasubramanianK15-Jul-08 22:36 
GeneralRe: How to add Sl. No. in data grid Pin
Imran Khan Pathan15-Jul-08 23:07
Imran Khan Pathan15-Jul-08 23:07 

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.