dynamictest.aspx.cs
上传用户:crystal
上传日期:2022-08-11
资源大小:33k
文件大小:2k
源码类别:

界面编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using EeekSoft.Web;
  12. namespace EeekSoft.PopupTest
  13. {
  14. /// <summary>
  15. /// Test of dynamic control loading
  16. /// </summary>
  17. public partial class DynamicTest : System.Web.UI.Page
  18. {
  19. /// <summary>
  20. /// Create controls
  21. /// </summary>
  22. protected void Page_Load(object sender, System.EventArgs e)
  23. {
  24. // Create popup window and popup win anchor control
  25. PopupWin popupWin=new PopupWin();
  26. PopupWinAnchor popupAnchor=new PopupWinAnchor();
  27. // Add controls to page
  28. placeHolder.Controls.Add(popupAnchor);
  29. placeHolder.Controls.Add(popupWin);
  30. // Set anchor properties
  31. popupAnchor.PopupToShow=popupWin.ClientID;
  32. popupAnchor.LinkedControl="reopen";
  33. popupAnchor.HandledEvent="onclick";
  34. // Set popup win properties
  35. popupWin.ActionType=EeekSoft.Web.PopupAction.MessageWindow;
  36. popupWin.Title="This is popup";
  37. popupWin.Message="<i>Message</i> displayed in popup";
  38. popupWin.Text="Text to show in new window..";
  39. popupWin.HideAfter=5000;
  40. // Show popup
  41. popupWin.Visible=true;
  42. popupWin.AutoShow=false;
  43. }
  44. override protected void OnInit(EventArgs e)
  45. {
  46. InitializeComponent();
  47. base.OnInit(e);
  48. }
  49. #region Web Form Designer generated code
  50. /// <summary>
  51. /// Required method for Designer support - do not modify
  52. /// the contents of this method with the code editor.
  53. /// </summary>
  54. private void InitializeComponent()
  55. {    
  56. }
  57. #endregion
  58. }
  59. }