时间:2021-05-28
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
{
Response.ContentType = "text/vnd.wap.wml";
StringBuilder builder = new StringBuilder();
builder.AppendLine("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
builder.AppendLine("<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.2//EN\" \"http://www.wapforum.org/DTD/wml12.dtd\">");
builder.AppendLine("<wml>");
builder.AppendLine("<head>");
builder.AppendLine("<meta http-equiv=\"Cache-Control\" content=\"max-age=0\" />");
builder.AppendLine("</head>");
builder.AppendLine("<card title=\"公开信息查阅中心\">");
builder.AppendLine("<p><img src=\"images/logo.png\" alt=\"公开信息查阅中心\" /><br/>");
builder.AppendLine("<a href=\"\" title=\"新闻动态\">新闻动态</a>|<a href=\"Department.aspx\" title=\"部门机构\">部门机构</a><br/>");
builder.AppendLine("<a href=\"\" title=\"档案文件\">档案文件</a>|<a href=\"\" title=\"最新文件\">最新文件</a><br/>");
builder.AppendLine("");
builder.AppendLine(" </p></card>");
builder.AppendLine("</wml>");
Response.Write(builder.ToString());
Response.End();
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
ASP.net实现页面跳转的方法 主要是使用response的属性,代码如下:protectedvoidLinkButton1_Click(objects
本文以示例形式分析了Asp.net中Response.Charset与Response.ContentEncoding的区别,分享给大家供大家参考。具体如下:1
在ASP.NET中使用Response.ContentType="类型名";来确定输出格式'ez'=>'application/andrew-inset','h
下面是几种Asp.net后台cs中,几种让页面等待几秒或一定时间后,再执行下一步操作的方法: 1、Response对象跳出转向 代码:Response.
当要进行MD5加密的字符串不含中文时,那么ASP.NET的加密结果和ASP是一致的:复制代码代码如下:Response.Write(FormsAuthentic