⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customattributetarget.aspx

📁 掌握学习.net开发的非常好的资料
💻 ASPX
字号:
<%@ Page Language="VB" Description="dotnetCHARTING Component" %>

<script runat="server">
Sub Page_Load(sender As [Object], e As EventArgs)
   CellEmployeeID.Text = Request.QueryString("id")
   CellEmployeeName.Text = Request.QueryString("name")
   CellEmployeeSalary.Text = Request.QueryString("salary")
   CellEmployeeDepartment.Text = Request.QueryString("department")
   CellEmployeeEmail.Text = Request.QueryString("email")
   CellEmployeePhone.Text = Request.QueryString("phone")
End Sub 'Page_Load 

</script>
<CENTER>
<html>
<head>
<title>Employee information</title>
</head>
<body>

<p>&nbsp;</p>
<div align="center"><center>
<asp:Table id="TableEmployee"  cellpadding="2" bordercolor="Gray" border="1" style="border-color:Gray;border-width:1px;border-style:solid;font-family:Arial;width:50%;border-collapse: collapse" runat="server">
<asp:TableRow style="background-color:SteelBlue;" forecolor="White" id="RowEmployeeHeader" runat="server">
    <ASP:TableCell Font-Bold="true" colspan="2" runat="server">Employee information:</ASP:TableCell>
 </asp:TableRow>
 <asp:TableRow id="RowEmployeeID" runat="server">
    <ASP:TableCell style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Employee ID:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeeID" runat="server">
</ASP:TableCell>
 </asp:TableRow>
 <asp:TableRow id="RowEmployeeName" runat="server">
    <ASP:TableCell  style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Name:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeeName" runat="server">
</ASP:TableCell>
 </asp:TableRow>
<asp:TableRow id="RowEmployeeSalary" runat="server">
    <ASP:TableCell  style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Salary:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeeSalary" runat="server">
</ASP:TableCell>
 </asp:TableRow>
<asp:TableRow id="RowEmployeeDepartment" runat="server">
    <ASP:TableCell  style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Department:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeeDepartment" runat="server">
</ASP:TableCell>
 </asp:TableRow>
<asp:TableRow id="RowEmployeeEmail" runat="server">
    <ASP:TableCell  style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Email:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeeEmail" runat="server">
</ASP:TableCell>
 </asp:TableRow>
<asp:TableRow id="RowEmployeePhone" runat="server">
    <ASP:TableCell  style="background-color:LightSteelBlue" HorizontalAlign="right" runat="server">Phone number:</ASP:TableCell>
    <ASP:TableCell style="background-color:Silver" id="CellEmployeePhone" runat="server">
</ASP:TableCell>
 </asp:TableRow>

 </asp:Table>
 </center></div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -