Convert .aspxto .htm.

Source: Internet
Author: User

Method 1: generate a file based on the template and keep it in the html folder.
Train of Thought Analysis:
1. Write a custom HTM template with $ value $ to replace it.
Include
2. In the ASPX of the generated page, read the HTM template with StreamReader and use REPLACE
Replace $ value $
3. output the completed string using StreamWriter
The reference code is as follows:
1)template emplate.htm
Copy codeThe Code is as follows:
<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<Html xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Title> $ title $ generate a static page Demo | -51aspx.com </title>
<Style type = "text/css">
<! --
. STYLE1 {
Font-size: 16px;
Font-weight: bold;
}
-->
</Style>
</Head>
<Body>
<Br/>
<Br/>
<Table width = "100%" border = "0" bgcolor = "#339900">
<Tr>
<Td height = "34" align = "center" bgcolor = "# FFFFFF"> <span class = "STYLE1" >$ title $ </span> </td>
</Tr>
<Tr>
<Td height = "42" bgcolor = "# FFFFFF"> <br/>
<Br/>
Content: $ content $ </td>
</Tr>
</Table>
<A href = "#" target = "_ blank"> copyright </a>
</Body>
</Html>

2) on the Default. aspx page, write the following code in the event handling process:
Copy codeThe Code is as follows:
// The Source Code replaces the feature characters in the template.
String mbPath = Server. MapPath ("template.htm ");
Encoding code = Encoding. GetEncoding ("gb2312 ");
StreamReader sr = null;
StreamWriter sw = null;
String str = null;
// Read
Try
{
Sr = new StreamReader (mbPath, code );
Str = sr. ReadToEnd ();
}
Catch (Exception ex)
{
Throw ex;
}
Finally
{
Sr. Close ();
}
// Automatically rename the file according to the time, and the extension can be modified by yourself
String fileName = DateTime. Now. ToString ("yyyyMMddHHmmss") + ". htm ";
Str = str. Replace ("$ title {1} quot;, txtTitle. Text); // Replace the Title
Str = str. Replace ("$ content {1} quot;, txtContent. Text); // Replace content
// Generate static files
Try
{
Sw = new StreamWriter (Server. MapPath ("htm/") + fileName, false, code );
Sw. Write (str );
Sw. Flush ();
}
Catch (Exception ex)
{
Throw ex;
}
Finally
{
Sw. Close ();
Response. Write ("Congratulations <a href = htm/" + fileName + "target = _ blank>" + fileName + "</a> has been generated and saved in the htm folder! ");
}

Method 2: generate static page persistence based on the Url address
Train of Thought Analysis:
The dynamic pages are directly translated into static pages, so the generated content is not flexible enough.
Reference code:
Copy codeThe Code is as follows:
// Generate static page persistence based on the Url
Protected void Button2_Click (object sender, EventArgs e)
{
Encoding code = Encoding. GetEncoding ("UTF-8 ");
StreamReader sr = null;
StreamWriter sw = null;
String str = null;
// Read the remote path
WebRequest temp = WebRequest. Create (txtUrl. Text. Trim ());
WebResponse myTemp = temp. GetResponse ();
Sr = new StreamReader (myTemp. GetResponseStream (), code );
// Read
Try
{
Sr = new StreamReader (myTemp. GetResponseStream (), code );
Str = sr. ReadToEnd ();
}
Catch (Exception ex)
{
Throw ex;
}
Finally
{
Sr. Close ();
}
String fileName = DateTime. Now. ToString ("yyyyMMddHHmmss") + ". htm ";
// Write
Try
{
Sw = new StreamWriter (Server. MapPath ("htm/") + fileName, false, code );
Sw. Write (str );
Sw. Flush ();
}
Catch (Exception ex)
{
Throw ex;
}
Finally
{
Sw. Close ();
Response. Write ("Congratulations <a href = htm/" + fileName + "target = _ blank>" + fileName + "</a> has been generated and saved in the htm folder! ");
}
}

Related Article

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.