| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="LYZHGDWeb.WebForm1" %>
- <!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 language="javascript">
- function mm() {
- var tel = '123';
- window.setTimeout("aa('" + tel + "')", 2000);
- // var m = '300-123456';
- // alert(m.indexOf('0300'));
- // document.getElementById("txt").style.width = "400px";
- // //window.location.reload();
- }
- function aa(str) {
- alert(str);
- }
- </script>
- </head>
- <body >
- <form id="form1" runat="server">
- <asp:Label ID="lbmes" runat="server"></asp:Label>
- <input type="text" value="11111" id="txt" /><%--style="border:#FF0000 0PX;"--%>
- <table border="0" cellpadding="0" cellspacing="0" width="100px">
- <tr bgcolor="#ffffff">
- <td style=" border-top: 1px solid #CCCCCC;border-bottom: 1px solid #CCCCCC;border-left: 1px solid #CCCCCC;border-right: 1px solid #CCCCCC;">
- <img src="" alt="传真信息" name="viewArea" id="viewArea" style=" cursor:hand; height:100px;width:100px;" runat="server" />
- </td>
- </tr>
- <tr>
- <td style="border-top: 1px solid #CCCCCC;border-bottom: 1px solid #CCCCCC;border-left: 1px solid #CCCCCC;border-right: 1px solid #CCCCCC;">
- <img src="" alt="传真信息" name="viewArea" id="viewArea1" runat="server" onclick="mm()" style="height:100px;width:100px;"/>
- <asp:DropDownList ID="DropDownList1" runat="server">
- </asp:DropDownList>
- <asp:ListBox ID="ListBox1" runat="server"></asp:ListBox>
- <select id="Select1" name="D1">
- <option></option>
- </select></td>
- </tr>
-
- </table>
-
-
- <asp:Button ID="Button1" runat="server" Text="Button" />
-
-
- </form>
- </body>
- </html>
|