我在VS2013上创建一个项目后,在项目上添加一个一般处理程序和一个Html文件。
为什么我通过
string modelPath = context.Server.MapPath("HtmlPage.html");
string htmlSengBack = System.IO.File.ReadAllText(modelPath);
context.Response.ContentType = "text/plain";
context.Response.Write(htmlSengBack);
调用html文件时,在网页直接显示html文件的源代码。
html文件如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>简单登录11</title>
</head>
<body>
<form action="Handler.ashx" method="post">
<input type="text" name="textName"/>
<input type="text" name="textPwd"/>
<input type="submit" value ="登录qw "/>
</form>
</body>
</html>
|
|