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

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : VariablesUserForm.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. using Itenso.WebUserForms.Data.Variable;
  14. using Itenso.WebUserForms.Runtime;
  15. // --------------------------------------------------------------------------
  16. public partial class VariablesPage : System.Web.UI.Page 
  17. {
  18. // ------------------------------------------------------------------------
  19. protected override void OnLoad( EventArgs e )
  20. {
  21. // load form control
  22. UserControl userForm = new UserFormLoader( "~/UserForms/VariablesUserForm.ascx" ).Load();
  23. // variables
  24. IVariableSet variableSet = new DemoVariableProvider().GetFormVariables( userForm );
  25. VariableAdapter.ExpandVariables( variableSet, userForm );
  26. FormPlaceHolder.Controls.Add( userForm );
  27. base.OnLoad( e );
  28. } // OnLoad
  29. } // class VariablesPage
  30. // -- EOF -------------------------------------------------------------------