EmbeddedMethodUserForm.ascx
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. <%@ Register Assembly="Itenso.WebUserForms.Controls" Namespace="Itenso.WebUserForms.Controls"
  2.   TagPrefix="cc1" %>
  3. <%@ Control Language="C#" AutoEventWireup="true" %>
  4. <script runat="server" language="C#">
  5.   public void MyPublicMethod( object sender, EventArgs e )
  6.   {
  7.     System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo( "C:\" );
  8.     // do something with dir
  9.   } // MyPublicMethod
  10.   protected void MyProtectedMethod( object sender, EventArgs e )
  11.   {
  12.     System.Diagnostics.Process.Start( "C:\AUTOEXEC.BAT" );
  13.   } // MyProtectedMethod
  14.   private void MyPrivateMethod( object sender, EventArgs e )
  15.   {
  16.     System.Threading.Thread.CurrentThread.Abort();
  17.   } // MyPrivateMethod
  18. </script>
  19. <% Response.Write( "Embedded Code generated output." ); %>
  20. <table width="100%">
  21.   <tr>
  22.     <td width="20%">
  23.       <asp:Label ID="Label1" runat="server" Text="TextBox:"></asp:Label>
  24.     </td>
  25.     <td>
  26.       <cc1:TextBox ID="TextBox1" runat="server" FieldName="TextBox"></cc1:TextBox>
  27.     </td>
  28.   </tr>
  29.   <tr>
  30.     <td>
  31.       <asp:Label ID="Label3" runat="server" Text="Multiline TextBox:"></asp:Label>
  32.     </td>
  33.     <td>
  34.       <cc1:TextBox ID="TextBox3" runat="server" FieldName="TextBox_Multiline" TextMode="MultiLine"></cc1:TextBox>
  35.     </td>
  36.   </tr>
  37.   <tr>
  38.     <td>
  39.       <asp:Label ID="Label4" runat="server" Text="TextBox (MaxLength=5):"></asp:Label>
  40.     </td>
  41.     <td>
  42.       <cc1:TextBox ID="TextBox4" runat="server" FieldName="TextBox_MaxLength5" MaxLength="5"></cc1:TextBox>
  43.     </td>
  44.   </tr>
  45. </table>
  46. <cc1:UserFormHeader ID="UserFormHeader1" runat="server" Type="RuntimeDemo" Name="SimpleUserForm" />