| 123456789101112131415161718192021222324 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="testform.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.testform" %>
- <!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 TestFunction(res) {
- alert(res);
- document.getElementById("t1").value = res;
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- fdsafdas
- </div><asp:textbox ID="t1" runat="server"></asp:textbox>
- </form>
- </body>
- </html>
|