📄 updatezuming.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="updatezuming.aspx.cs" Inherits="updatezuming" %>
<!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>
<script type="text/javascript">
function chongxie(groupname){
document.getElementById("groupnames").value=groupname;
}
</script>
<style type="text/css">
div.RoundedCorner{background: #5AAE18}
b.rtop, b.rbottom{display:block;background: #FFF}
b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden;
background: #5AAE18}
b.r1{margin: 0 4px}
b.r2{margin: 0 3px}
b.r3{margin: 0 2px}
b.rtop b.r4, {margin: 0 1px;height: 1px}
.style1 {
font-size: 13px;
color: #FFFFFF;
font-weight: bold;
}
</style>
<link href="../css/textarea.css" rel="stylesheet"
type="text/css">
<style type="text/css">
<!--
body {
background-image: url();
margin-top: 2px;
}
-->
</style>
<style type="text/css">
<!--
body {
margin-top: 2px;
}
-->
</style>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align: center">
<table style="width: 541px; height: 120px" border="1">
<tr>
<td colspan="3" align="center">
<div class="RoundedCorner">
<div align="center"><b class="rtop"><b
class="r1"></b><b class="r2"></b><b class="r3"></b><b
class="r4"></b></b> <span class="style1">更 新 群 组</span></div>
</div></td>
</tr>
<tr>
<td colspan="3">
<%
//取群组名
string groupname=this.Request["groupname"];
//判断是否为空
if (groupname == null)
{
this.Response.Write(string.Format(GetRedirect.REDIRECT, "qunzu.aspx"));
}else{
%>
群组名称:<input id="groupnames" name="groupnames" type="text" value="<%=groupname %>" />(如:我的同事)
<input id="hidname" name="hidname" type="hidden" value="<%=groupname %>" /></td>
</tr>
<tr>
<td colspan="3" align="center" style="height: 48px">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="保存" />
<input id="Button2" type="reset" value="重写" />
<input id="Button3" type="button" value="取消" onclick="javascript:history.go(-1)"/></td>
</tr>
</table>
<%
}
%>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -