黑马程序员技术交流社区

标题: context.Reponse.Write [打印本页]

作者: 谢玲    时间: 2012-11-26 14:07
标题: context.Reponse.Write
public void ProcessRequest(HttpContext context)
context.Response.ContentType=”text/html”;
System.Text.StringBuilder sbHTML=new System.Text.StringBuilder();
SbHTML.Append(“<html><head><title>登陆页面</title></head><body><form action=’01.ashx’ method=’get’>”);
sbHTML.Append(“用户名:<input type=’text’ name=’txtName’ /><br/>密码:<input type=’password’ name=’txtpwd’/><br/>”);
sbHTML.Append(“<input type=’submit’ value=’登陆’/>”);
sbHTML.Append(“</form></body><html>”);
Context.Response.Write(sbHTML.ToString());
string strUserName=context.Request.Form[“txtName”];
if(!string.IsNullOrEmpty(strUserName)){
  context.Reponse.Write(“Form表单中的值:”+strUserName);
}
String strUserName2=context.Repuest.QueryString[“txtNama”];
If(!string.IsNullOrEmpty(strUserName2)){
   Context.Repuest.Write(“URL中的值”+strUserName);
}
问题:为什么运行结果只有url中的值+‘’
作者: 韩温华    时间: 2012-11-26 14:18
context.Repuest.QueryString[“txtNama”];
Request写错了,你改正后再试试
作者: 谢玲    时间: 2012-11-26 14:52
改了成正确的 了,还是不行啊??

作者: 陈辉    时间: 2012-11-26 16:43
1、string strUserName=context.Request.Form[“txtName”]改成string strUserName=context.Repuest.QueryString[“txtNama”] 因为你的表单中使用get发送提交的,所以要用QueryString,如果你将表单用post提交的话,就用Form来获取提交的值
2、context.Repuest.Write(“URL中的值”+strUserName)改成context.Response.Write(“URL中的值”+strUserName)
3、context.Reponse.Write(“Form表单中的值:”+strUserName)里的Response写错了
作者: 吴步兵    时间: 2012-11-26 22:25
注意:context.Request.Write(“URL中的值”+strUserName);中的strUserName=context.Request.Form[“txtName”];你用get提交的时候肯定是得不到值的,用get提交String strUserName2=context.Request.QueryString[“txtName”];能得到值。所以改成Context.Repuest.Write(“URL中的值”+strUserName2);就好了。
同时再给点小建议,你发代码的时候点 中的<>能添加代码段,你把需要发的代码粘贴进去就行了,省得你再敲,效率低不说还容易敲错。别人看起来也轻松





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2