.NET网页不要网页源代码怎么弄
你们看http://kkhut.com/kkhut.aspx?echostr=sdffsdaf,这样源码里就出现了代码了。
代码是:
<%@ Page Language="C#" EnableViewState="false" AutoEventWireup="true" CodeFile="kkhut.aspx.cs" Inherits="kkhut" %>
<% Response.Write(HttpContext.Current.Request.QueryString["echostr"]);%>
这样在我本机上测试时是没有源代码的,可是上传到服务器上就有源代码了,郁闷啊,这是在怎么回事啊?求解?
------最佳解决方案--------------------建一个“一般处理程序”吧,Handler1.ashx
/// <summary>
/// Handler 的摘要说明
/// </summary>
public class Handler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write(context.Request.QueryString["echostr"]);
}
public bool IsReusable
{
get
{
return false;
}
}
}
------其他解决方案--------------------iis的.net版本
------其他解决方案--------------------
你说的是网页右键"查看代码代码"? 怎么可能看到服务端的代码?弄错了吧。
------其他解决方案--------------------你的源码指的是什么?
------其他解决方案--------------------
<!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></head>
<body>
<form name="form1" method="post" action="kkhut.aspx" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE2MTY2ODcyMjlkZAXMui2dNoml7a4Sb0p6s5HeLv3v" />
</div>
<div>
</div>
</form>
</body>
</html>
我不想看到
------其他解决方案--------------------
html的代码啊,我不想要
------其他解决方案--------------------完成由后台生成就没有html源代码了
------其他解决方案--------------------呵呵,你不输出html,你让浏览器看啥子
就像你和电视机说“电视机啊,我不想接收电视台的信号,你就凭空给俺放个电影看看吧”你觉着可能吗?
浏览器就是电视机,html就是俺们提供给他的信号,木信号,你看啥子
------其他解决方案--------------------