刚刚看asp.net的视频,讲到这个的时候的一个例子是:- context.Response.ContentType = "text/html";
- string fullPath = context.Server.MapPath("hello2.htm");
- string content = File.ReadAllText(fullPath);
- context.Response.Write(content);
-
- string userName=context.Request["UserName"];
- if (string.IsNullOrEmpty(userName))
- {
- context.Response.Write("刷新进入");
- }
- else
- {
- context.Response.Write("提交进入");
- }
复制代码 我想知道的是,如果我在单元格中不输入值直接点提交,这个是算提交进入还是刷新进入呢 ?我感觉是提交啊.但是结果是刷新.
hello2.htm代码如下.- <!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 action="hello2.ashx">
- 姓名:<input type="text" name="UserName" /><input type="submit" value="提交" name="tijiao" />
- </form>
- </body>
- </html>
复制代码 |