Asp.net static page generation method

Source: Internet
Author: User
/// <Summary>
/// Input the URL to return the HTML of the webpage Code
/// </Summary>
/// <Param name = "url"> URL </param>
/// <Returns> </returns>
Public static string geturltohtml (string URL)
{
Errormsg = "";
Try
{
System. net. webrequest wreq = system. net. webrequest. Create (URL );
// Get the response instance.
System. net. webresponse wresp = wreq. getresponse ();
// Read an http-Specific Property
// If (wresp. GetType () = httpwebresponse)
//{
// Datetime updated = (system. net. httpwebresponse) wresp). lastmodified;
//}
// Get the response stream.
System. Io. Stream respstream = wresp. getresponsestream ();
// Dim reader as streamreader = new streamreader (respstream)
System. Io. streamreader reader = new system. Io. streamreader (respstream, system. Text. encoding. getencoding ("gb2312 "));
Return reader. readtoend ();

}
Catch (system. Exception ex)
{
Errormsg = ex. message;
}
Return "";
}

You can use this token to obtain the HTML code of the client on the web page, and then save it to The. html file.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.