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

界面编程

开发平台:

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. namespace EeekSoft.PopupTest
  12. {
  13. /// <summary>
  14. /// Summary description for anchor.
  15. /// </summary>
  16. public partial class anchor : System.Web.UI.Page
  17. {
  18.   
  19. protected void Page_Load(object sender, System.EventArgs e)
  20. {
  21. // Put user code to initialize the page here
  22. }
  23. #region Web Form Designer generated code
  24. override protected void OnInit(EventArgs e)
  25. {
  26. //
  27. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  28. //
  29. InitializeComponent();
  30. base.OnInit(e);
  31. }
  32. /// <summary>
  33. /// Required method for Designer support - do not modify
  34. /// the contents of this method with the code editor.
  35. /// </summary>
  36. private void InitializeComponent()
  37. {    
  38.     }
  39. #endregion
  40.     protected void btnSetProp_Click(object sender, System.EventArgs e)
  41.     {
  42.       showTest.NewMessage=textMsg.Text;
  43.       showTest.NewText=textText.Text;
  44.       showTest.NewTitle=textTitle.Text;
  45.     }
  46. }
  47. }