ASP.NET实现个人信息注册页面并跳转显示_实用技巧

题目

新建一个MVC项目,利用HTML、CSS、JS、jQuery、Ajax、jQuery UI等技术设计一个个人信息注册页面。当点击“提交”按钮时,跳转到新的页面显示录入信息。

基本要求:

用户名为6-10个小写字母(小写使用正则式验证,且用户名不能为“wustzz” –用Ajax技术来检测);密码为6位数字,确认密码不一致时有提示;籍贯使用级联(jquery实现);Email必须符合Email格式;手机是11位(假设规定以1569开头);出生年月使用jQuery UI日历组件设置;图片要传递到新的页面显示。

实现效果

(源码在文章结尾)

 

主要涉及知识点

1、基本的html界面编程
2、JavaScript语言
3、jQuery、jQuery UI的使用
4、ASP.NET Request相关操作
5、了解ASP.Net WEB MVC下的目录结构以及基础编程

代码

ProjectController.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ProjectOne.Controllers
{
  public class ProjectController : Controller
  {
    // GET: Project
    public ActionResult Index()
    {
      return View();
    }
    public ActionResult Show()
    {
      //获取图片文件
      HttpPostedFileBase file = Request.Files["filename"];
      if(file != null)
      {
        //将图片存储在/Content/UpLoad/目录下,名字为111.png
        var fileName = Request.MapPath("~/Content/UpLoad/") + "111.png";
        file.SaveAs(fileName);
      }
      return View();
    }
  }
}

Index.cshtml

@{
  ViewBag.Title = "Index";
}
<script src="~/Scripts/my_script.js"></script>
<script src="~/jquery-ui-1.11.1.custom/external/jquery/jquery.js"></script>
<script>
  $(document).ready(function () {
    $("#native_place").change(function () {
      switch ($("#native_place").val()) {
        case "江苏":
          $("#major").empty();
          $("#major").append("<option value=''></option>");
          $("#major").append("<option value='江阴'>江阴</option>");
          $("#major").append("<option value='无锡'>无锡</option>");
          $("#major").append("<option value='常州'>常州</option>");
          break;
        case "湖北":
          $("#major").empty();
          $("#major").append("<option value=''></option>");
          $("#major").append("<option value='武汉'>武汉</option>");
          $("#major").append("<option value='武昌'>武昌</option>");
          $("#major").append("<option value='荆州'>荆州</option>");
          break;
      }
    });
  });
</script>
@section scripts{
<script src="~/jquery-ui-1.11.1.custom/jquery-ui.min.js"></script>
<link href="~/jquery-ui-1.11.1.custom/jquery-ui.min.css" rel="stylesheet" />
  <script>
    $(document).ready(function () {
      $("#birthday").datepicker({
        dateFormat: "yy-mm-dd",
        inline: true
      });
    });
  </script>
}
<h2 style="color:red;font-family:楷体;font-size:30px;">请输入个人详细信息</h2>
<form onsubmit="return checkAll()" action="~/Project/Show" method="post" enctype="multipart/form-data">
  <table>
    <tr>
      <th>用户名</th>
      <th>
        <input type="text" onblur="checkName()" name="username" id="username" />
        <span style="color:red;" id="tip_name">*</span>
      </th>
    </tr>
    <tr>
      <th>密码</th>
      <th>
        <input type="text" onblur="checkPassword()" name="psd" id="psd" />
        <span style="color:red;" id="tip_psd">*</span>
      </th>
    </tr>
    <tr>
      <th>确认密码</th>
      <th>
        <input type="text" onblur="checkPasswordAgain()" name="psd_again" id="psd_again" />
        <span style="color:red;" id="tip_psd_again">*</span>
      </th>
    </tr>
    <tr>
      <th>性别</th>
      <th>
        <input type="radio" name="gender" value="男" checked="checked" /> 男
        <input type="radio" name="gender" value="女" />女
      </th>
    </tr>
    <tr>
      <th>籍贯</th>
      <th>
        <select id="native_place" name="native_place">
          <option value=""></option>
          <option value="江苏">江苏</option>
          <option value="湖北">湖北</option>
        </select>
        <select id="major" name="major"></select>
      </th>
    </tr>
    <tr>
      <th>Email</th>
      <th>
        <input type="text" onblur="checkEmail()" id="email" name="email" value="如 xujiajia@qq.com" />
        <span style="color:red;" id="tip_email">*</span>
      </th>
    </tr>
    <tr>
      <th>手机号</th>
      <th>
        <input type="text" onblur="checkPhone()" id="phone" name="phone" value="手机是11位以1569开头的数字" />
        <span style="color:red;" id="tip_phone">*</span>
      </th>
    </tr>
    <tr>
      <th>专业擅长</th>
      <th>
        <select name="speciality" multiple="multiple">
          <option value="Windows编程">Windows编程</option>
          <option value="单片机编程">单片机编程</option>
          <option value="ASP.NET编程">ASP.NET编程</option>
          <option value="J2EE编程">J2EE编程</option>
          <option value="JAVA编程">JAVA编程</option>
        </select>
      </th>
    </tr>
    <tr>
      <th>业余爱好</th>
      <th>
        <input type="checkbox" name="hobby" value="足球" />足球
        <input type="checkbox" name="hobby" value="篮球" />篮球
        <input type="checkbox" name="hobby" value="排球" />排球
        <input type="checkbox" name="hobby" value="唱歌" />唱歌
        <input type="checkbox" name="hobby" value="其他" />其他
      </th>
    </tr>
    <tr>
      <th>个人照片</th>
      <th>
        <input type="file" id="filename" name="filename" />
      </th>
    </tr>
    <tr>
      <th>出生年月</th>
      <th>
        <input type="text" id="birthday" name="birthday" readonly="readonly" />
      </th>
    </tr>
    <tr>
      <th>备注信息</th>
      <th>
        <textarea name="more_info" cols="40" rows="8">
          可以补充一下
        </textarea>
      </th>
    </tr>
    <tr>
      <th></th>
      <th>
        <input type="submit" value="提交" />
         
        <input type="reset" value="重置" />
      </th>
    </tr>
  </table>
</form>

Show.cshtml

@{
  ViewBag.Title = "Show";
}
<h2 style="color:red;font-family:楷体;font-size:30px;">个人信息展示</h2>
<table>
  <tr>
    <th>用户名</th>
    <th>@Request["username"]</th>
  </tr>
  <tr>
    <th>密码</th>
    <th>@Request["psd"]</th>
  </tr>
  <tr>
    <th>确认密码</th>
    <th>@Request["psd_again"]</th>
  </tr>
  <tr>
    <th>性别</th>
    <th>@Request["gender"]</th>
  </tr>
  <tr>
    <th>籍贯</th>
    <th>@Request["native_place"]</th>
    <th>@Request["major"]</th>
  </tr>
  <tr>
    <th>Email</th>
    <th>@Request["email"]</th>
  </tr>
  <tr>
    <th>手机号</th>
    <th>@Request["phone"]</th>
  </tr>
  <tr>
    <th>专业擅长</th>
    <th>@Request["speciality"]</th>
  </tr>
  <tr>
    <th>业余爱好</th>
    <th>@Request["hobby"]</th>
  </tr>
  <tr>
    <th>个人照片</th>
    <th><img id="img" src="~/Content/UpLoad/111.png" alt="" /></th>
  </tr>
  <tr>
    <th>出生年月</th>
    <th>@Request["birthday"]</th>
  </tr>
  <tr>
    <th>备注信息</th>
    <th>@Request["more_info"]</th>
  </tr>
</table>

my_script.js

function checkName() {
  var u = document.getElementById("username");
  var t = document.getElementById("tip_name");
  var reg = /^[a-z]{6,10}$/;
  if (!reg.test(u.value)) {
    t.innerHTML = "用户名为6-10个小写字母";
    return false;
  } else {
    if (u.value == "wustzz") {
      t.innerHTML = "用户名不可以为wustzz";
      return false;
    }
    t.innerHTML = "用户名填写正确";
    return true;
  }
}
function checkPassword() {
  var p = document.getElementById("psd");
  var t = document.getElementById("tip_psd");
  var reg = /^\d{6}$/;
  if (!reg.test(p.value)) {
    t.innerHTML = "密码为6位数字";
    return false;
  } else {
    t.innerHTML = "密码填写正确";
    return true;
  }
}
function checkPasswordAgain() {
  var p1 = document.getElementById("psd");
  var p2 = document.getElementById("psd_again");
  var t = document.getElementById("tip_psd_again");
  if (p1.value != p2.value) {
    t.innerHTML = "密码前后不一致"
    return false;
  } else {
    t.innerHTML = "密码确认一致";
    return true;
  }
}
function checkEmail() {
  var e = document.getElementById("email");
  var t = document.getElementById("tip_email");
  var reg = /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/;
  if (!reg.test(e.value)) {
    t.innerHTML = "必须填写Email格式";
    return false;
  } else {
    t.innerHTML = "Email填写正确";
    return true;
  }
}
function checkPhone() {
  var p = document.getElementById("phone");
  var t = document.getElementById("tip_phone");
  var reg = /^1569\d{7}$/;
  if (!reg.test(p.value)) {
    t.innerHTML = "手机是11位以1569开头的数字";
    return false;
  } else {
    t.innerHTML = "填写手机正确";
    return true;
  }
}
function checkAll() {
  if (checkName() && checkPassword() && checkPasswordAgain() &&
    checkEmail() && checkPhone()) {
    return true;
  }
  return false;
}

源码地址:

http://download.csdn.net/detail/double2hao/9691584

以上所述是小编给大家介绍的ASP.NET实现个人信息注册页面并跳转显示,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索asp.net页面跳转
,以便于您获取更多的相关知识。

时间: 2024-09-27 15:30:00

ASP.NET实现个人信息注册页面并跳转显示_实用技巧的相关文章

ASP.NET在IIS上注册报0x800702e4错误解决方法_实用技巧

1.--404.3 not found 2.-- 关于asp.net2.0在iis下的注册问题,因为我的win7是后装的iis,而.framework2.0则是跟着vs2005一起早就装好的,这 个时候需要手动注册一下.framework2.0,方法如下:在xp下,在"运行"里面执行一下x:\Windows\Microsoft.NET \Framework\v2.0.50727\aspnet_regiis.exe –i就行了,但在win7下,会报一个"0x800702e4 请

使用ASP.NET模板生成HTML静态页面的五种方案_实用技巧

ASP.NET模版生成HTML静态页面方案1: 复制代码 代码如下: /// < summary> /// 传入URL返回网页的html代码 /// < /summary> /// < param name="Url">URL< /param> /// < returns>< /returns> public static string getUrltoHtml(string Url) { errorMsg = &

ASP.NET实现读取Excel内容并在Web上显示_实用技巧

本文实例讲述了ASP.NET实现读取Excel内容并在Web上显示的方法,是非常实用的一个功能,分享给大家供大家参考.具体实现方法如下: 点击事件代码.cs代码如下: protected void Button1_Click(object sender, EventArgs e) { string strPath = "d:/test.xls"; string mystring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source

asp.net 页面回跳实现代码_实用技巧

主要是Request.UrlReferrer的用法 注意: 如果上一页面使用document.location方法导航到当前页面,Request.UrlReferrer返回空值 如果有A,B两个页面,在浏览器中直接请求A页面,在A页面的中Page_Load事件中导航到B 页面, 则 Request.UrlReferrer返回空.因为 在Page_load事件中页面还未初始化,所以无法记录当前页的信息, 导航到b页面也就无法获得上一页面的信息 复制代码 代码如下: protected void P

ASP.NET MVC 从IHttp到页面输出的实例代码_实用技巧

复制代码 代码如下: MVCHandler : IHttpHandlervoid IHttpHandler.ProcessRequest(HttpContext httpContext){    this.ProcessRequest(httpContext);} protected virtual void ProcessRequest(HttpContext httpContext){    HttpContextBase base2 = new HttpContextWrapper(htt

Asp.Mvc 2.0实现用户注册实例讲解(1)_实用技巧

最近一直在研究ASP.NET MVC,看了一些教程,总觉得印象不是太深刻,于是决定动手写一个系列的MVC教程,一方面是为了加深自己的印象,另一方面也给学习MVC的同学提供一些帮助,作为一个参考资料.本系列的教程将通过一个实例来由浅入深讲解MVC,相关知识点将在我们的实例中为大家讲解. Asp.mvc模式改变了传统的asp.net webform方式,我们在使用MVC开发WEB程序时,要摒弃传统的WEBFORM方式的思想,传统的WEBFORM方式用户拖拉一个按钮,然后双击按钮,就可以在后台写相应的

ASP.NET中弹出消息框的几种常见方法_实用技巧

本文实例讲述了ASP.NET中弹出消息框的几种常见方法.分享给大家供大家参考.具体分析如下: 在ASP.NET网站开发中,经常需要使用到alert消息框,尤其是在提交网页的时候,往往需要在服务器端对数据进行检验,并给出提示或警告. 这里,仅介绍几种不同的实现方法. 1.众所周知的方法是采用如下代码来实现: 复制代码 代码如下: Response.Write("<script>alert('弹出的消息')</script>"); 不可否认,这种方法是最常用,也是最

Asp.net内置对象之Server对象(概述及应用)_实用技巧

一.了解Server对象 Server对象提供对服务器上的方法和属性的访问以及进行HTML编码的功能.这些功能分别由Server对象相应的方法和属性完成. 二.Server对象的常用属性 (1).MachineName(2).ScriptTimeout:属性用于设置脚本程序执行的时间,适当地设置脚本程序的ScriptTimeout可以提高整个Web应用程序的效率.语法如下:Server.ScriptTimeout=time;(以s(秒)为单位) ScriptTimeout属性的最短时间默认为90

ASP.NET设计网络硬盘之查看文件夹实现代码_实用技巧

就像操作本地的计算机一样,需要为每个网络用户提供各自的一块硬盘空间,用户登录后便可以对自己的空间进行管理.管理是多方面的,首先用户应该能看到自己文件夹下的所有内容,另外需要提供多级文件夹目录的支持. 下面要介绍的实例包括"网上硬盘"的许多功能,将一步步为大家进行介绍.首先创建工程实例,然后进行主界面的设计,最后对各个功能的实现分别进行介绍. 新工程创建 新工程创建的步骤如下: (1) 打开MicroSoft Visual Studio.NET应用程序. (2) 选择"文件&q