本文共 868 字,大约阅读时间需要 2 分钟。
webform1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="test4_10.WebForm1" %>
webform1.aspx.cs
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace test4_10{ public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btn_submit_Click(object sender, EventArgs e) { if ((txt_pwd.Text.Length < 8) || (txt_pwd.Text.Length > 15)) { Response.Write(""); return; } Response.Write(""); } }}
转载地址:http://dyrm.baihongyu.com/