ValidationUserForm.aspx.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : ValidationUserForm.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.Web.UI;
  11. using System.Web.UI.WebControls;
  12. using Itenso.WebUserForms.Controls;
  13. // --------------------------------------------------------------------------
  14. public partial class ValidationPage : System.Web.UI.Page 
  15. {
  16. // ------------------------------------------------------------------------
  17. protected override void OnLoad( EventArgs e )
  18. {
  19. // load form control
  20. UserControl userForm = new UserFormLoader( "~/UserForms/ValidationUserForm.ascx" ).Load();
  21. FormPlaceHolder.Controls.Add( userForm );
  22. base.OnLoad( e );
  23. } // OnLoad
  24. // ------------------------------------------------------------------------
  25. protected void SubmitButton_Click( object sender, EventArgs e )
  26. {
  27. } // SubmitButton_Click
  28. } // class ValidationPage
  29. // -- EOF -------------------------------------------------------------------