Click here to Skip to main content
15,914,767 members

Comments by Member 11091243 (Top 3 by date)

Member 11091243 26-Sep-14 2:41am View    
By using absoluteuri we can resolve this Issue.
Eg:
public static string GetAbsoluteURL(string strRelativeURL, string strbaseURL)
{
return new Uri(new Uri(strbaseURL), strRelativeURL).AbsoluteUri;

}
Member 11091243 26-Sep-14 2:39am View    
Im using Update panal only. I could't get the solution using web service also. Can you explain clearly?
Member 11091243 24-Sep-14 2:08am View    
The issue was I'm trying to crawl the particular page depending URL alone.My code loading all the URL's.Eg: If I give http://www.asp.com,It should load the depending URL's of asp.com .If I have facebook link in that it should load faceboo.com alone but it is loading all the links inside the facebook also.

But now no problem.I resolved the Issue.

Thanks for your interest.