Asp.Net第一章入门之后台处理程序

举报
tea_year 发表于 2021/12/23 00:18:05 2021/12/23
【摘要】 Asp.Net C#-->OOP-->Winform--Asp.Net 1.新建空项目 2.建立html页面 login.html   <form action="handler/LoginHandler.ashx" method="post">      &...

Asp.Net

C#-->OOP-->Winform--Asp.Net

1.新建空项目

2.建立html页面

login.html


  
  1.   <form action="handler/LoginHandler.ashx" method="post">
  2.         账户:<input type="text" name="uname" /><br />
  3.         密码:<input type="password" name="pwd" /><br />
  4.          <button type="submit">提交</button>
  5.      </form>

3.测试test.ashx

aspx:Web窗体设计页面。Web窗体页由两部分组成:视觉元素(html、服务器控件和静态文本)和该页的编程逻辑(VS中的设计视图和代码视图可分别看到它们对应得文件)。VS将这两个组成部分分别存储在一个单独的文件中。视觉元素在.aspx 文件中创建

ashx:.ashx文件是主要用来写web handler的。使用.ashx 可以让你专注于编程而不用管相关的web技术。我们熟知的.aspx是要做html控件树解析的,.aspx包含的所有html实际上是一个类,所有的html都是类里面的成员,这个过程在.ashx是不需要的。ashx必须包含IsReusable属性(这个属性代表是否可复用,通常为true),而如果要在ashx文件用使用Session必须实现IRequiresSessionState接口.

3.1 查看源码,理解HttpRequest、HttpResponse


  
  1.  using System;
  2.  using System.Collections.Generic;
  3.  using System.Linq;
  4.  using System.Web;
  5.  ​
  6.  namespace demo01.handler
  7.  {
  8.      /// <summary>
  9.      /// test 的摘要说明
  10.      /// </summary>
  11.      public class test : IHttpHandler
  12.     {
  13.  ​
  14.          public void ProcessRequest(HttpContext context)
  15.         {
  16.              context.Response.ContentType = "text/plain";
  17.              context.Response.Write("Hello World");
  18.         }
  19.  ​
  20.          public bool IsReusable
  21.         {
  22.              get
  23.             {
  24.                  return false;
  25.             }
  26.         }
  27.     }
  28.  }

3.2 handler/LoginHandler.ashx


  
  1.  using System;
  2.  using System.Collections.Generic;
  3.  using System.Linq;
  4.  using System.Web;
  5.  ​
  6.  namespace demo01.handler
  7.  {
  8.      /// <summary>
  9.      /// LoginHandler 的摘要说明
  10.      /// </summary>
  11.      public class LoginHandler : IHttpHandler
  12.     {
  13.  ​
  14.          public void ProcessRequest(HttpContext context)
  15.         {
  16.              context.Response.ContentType = "text/html";
  17.              //context.Response.Write("Hello World");
  18.              //我们下面的工作,就是需要通过请求对象,接受网页的数据
  19.              string uname = context.Request.Params["uname"].ToString();
  20.              //context.Response.Write(uname);
  21.              string pwd = context.Request.Params["pwd"].ToString();
  22.  ​
  23.              //下一步需要判断,判断如果成功,则显示一句话,否则显示一句话
  24.              if ("admin".Equals(uname) && "123456".Equals(pwd))
  25.             {
  26.                  context.Response.Write("<font color='red'>成功登录!</font>");
  27.             }
  28.              else {
  29.                  context.Response.Write("<font color='blue'>登录失败!</font>");
  30.             }
  31.         }
  32.  ​
  33.          public bool IsReusable
  34.         {
  35.              get
  36.             {
  37.                  return false;
  38.             }
  39.         }
  40.     }
  41.  }

文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。

原文链接:aaaedu.blog.csdn.net/article/details/108879077

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。