1 Star 3 Fork 0

Admin/MyWebSms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
useradd.aspx 10.07 KB
一键复制 编辑 原始数据 按行查看 历史
Ai鹿子 提交于 2022-04-24 10:09 . 01
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="useradd.aspx.cs" Inherits="useradd" %><!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 runat="server">
<title>添加客户</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script language="javascript" type="text/javascript">
function change() {
var ddl = document.getElementById("<%=interid.ClientID %>");
var ddlSelectValue = ddl.options[ddl.selectedIndex].value;
document.getElementById("inters").value = ddlSelectValue;
}
</script>
</head>
<body style="background-color: #fff;">
<form runat="server" id="form1">
<div id="maintitle">
<div id="mainico">
</div>
<div id="maintip">
<strong>位置:</strong>添加客户</div>
</div>
<div class="useradd-box">
<table width="100%" id="add_table" style="BORDER-COLLAPSE: collapse" borderColor="#eeeeee" cellSpacing="0" bgColor="#ffffff" border="1">
<tr>
<td height="25" width="30%" class="left" align="right">
客户账号 :</td>
<td height="25" width="*" align="left">
<input id="UserName" style="width: 125px" type="text" name="UserName" maxlength="30"
minlength="4" nullable="false" errmsg="客户账号" class="input">&nbsp;<font color="red">*</font>
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
账号密码 :</td>
<td height="25" width="*" align="left">
<input id="UserPwd" style="width: 125px" type="text" name="UserPwd" maxlength="30"
minlength="6" nullable="false" errmsg="账号密码" class="input"> <input type="button" value="生成" class="btn6" onclick='randPassword("UserPwd")' />&nbsp;<font color="red">*</font>密码长度必须八位以上,以字母开头包含字母和数字
</td>
</tr>
<tr runat="server" id="tmdinter">
<td height="25" width="30%" class="left" align="right">
选择通道 :</td>
<td height="25" width="*" align="left">
<asp:DropDownList runat="server" ID="interid" CssClass="input" onchange="change();"></asp:DropDownList>
&nbsp;<font color="red">*</font>
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
客户名称 :</td>
<td height="25" width="*" align="left">
<input id="TrueName" style="width: 125px" type="text" name="TrueName" maxlength="30"
minlength="2" nullable="false" errmsg="客户名称" class="input">&nbsp;<font color="red">*</font>
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
客户签名 :</td>
<td height="25" width="*" align="left">
<input id="SubName" style="width: 125px" type="text" name="SubName" maxlength="10"
minlength="2" nullable="true" errmsg="客户签名" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
手机号码 :</td>
<td height="25" width="*" align="left">
<input id="Mobile" style="width: 250px" type="text" name="Mobile" maxlength="50"
minlength="2" nullable="true" errmsg="手机号码" class="input">&nbsp;<font color="red">*</font>
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
腾讯QQ :</td>
<td height="25" width="*" align="left">
<input id="UserQQ" style="width: 125px" type="text" name="UserQQ" maxlength="15"
minlength="5" nullable="true" errmsg="腾讯QQ" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
电子邮件 :</td>
<td height="25" width="*" align="left">
<input id="Email" style="width: 250px" type="text" name="Email" maxlength="50" minlength="5"
nullable="true" errmsg="电子邮件" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
详细地址 :</td>
<td height="25" width="*" align="left">
<input id="Address" style="width: 250px" type="text" name="Address" maxlength="50"
minlength="5" nullable="true" errmsg="详细地址" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
单价 :</td>
<td height="25" width="*" align="left">
<input id="PerPrice" style="width: 125px" type="text" name="PerPrice" maxlength="50"
minlength="5" value="0.04" nullable="true" errmsg="单价" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
总价 :</td>
<td height="25" width="*" align="left">
<input id="CountPrice" style="width: 125px" type="text" name="CountPrice" maxlength="50"
minlength="5" value="0.00" nullable="true" errmsg="单价" class="input">
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
付费方式 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="PayType" value="预付费" checked="checked">预付费
<input type="radio" name="PayType" value="后付费">后付费
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
是否支持建立下级客户 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="UserType" value="0" checked="checked">不支持
<input type="radio" name="UserType" value="1">支持
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
是否支持接收上行数据 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="UserCall" value="0" checked="checked">不支持
<input type="radio" name="UserCall" value="1">支持
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
是否支持查看状态报告 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="UserReport" value="0" checked="checked">不支持
<input type="radio" name="UserReport" value="1">支持
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
用户是否支持号码下载 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="UserDownload" value="0" checked="checked">不支持
<input type="radio" name="UserDownload" value="1">支持
</td>
</tr>
<tr>
<td height="25" width="30%" class="left" align="right">
是否立即开通起用账户 :</td>
<td height="25" width="*" align="left">
<input type="radio" name="UserPower" value="0" checked="checked">不起用
<input type="radio" name="UserPower" value="1">起用
</td>
</tr>
</table>
<table style="border-collapse:collapse;margin-top:4px;" bordercolor="#eeeeee" cellspacing="0" bgcolor="#ffffff" border="1" width="100%" id="add_button">
<tr>
<td height="45" width="30%" align="right">
</td>
<td height="45" valign="bottom">
<div align="left">
<input type="hidden" id="hiddenid" runat="server" />
<input type="hidden" id="inters" runat="server" />
<input name="btnUserAdd" id="btnUserAdd" type="button" class="btn" value=" 提 交 " />
<input name="reset" id="Submit1" type="reset" class="btn" value=" 重 置 " />
<input name="back" id="back" type="button" onclick="history.back();" class="btn"
value=" 返 回 " />
</div>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/huanghe_1_0/my-web-sms.git
git@gitee.com:huanghe_1_0/my-web-sms.git
huanghe_1_0
my-web-sms
MyWebSms
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385