default.aspx
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" ValidateRequest="false" %>
  2. <%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
  3. <script runat="server">
  4. protected void Page_Load(Object Src, EventArgs E) {
  5. if (!IsPostBack) {
  6. FreeTextBox1.FontFacesMenuList = new string[] { "Arial", "Times" };
  7. FreeTextBox1.Text = "<p>some <b>Bold</b> and <u>underlined</u> and <font color="#008000">colored</font> text<p><ul><li>bulleted list 1</li></ul>";
  8. }
  9. }
  10. protected void SaveButton_Click(Object Src, EventArgs E) {
  11. Output.Text = FreeTextBox1.Text;
  12. }
  13. </script>
  14. <html>
  15. <head>
  16. <title>Custom DropDownList values</title>
  17. </head>
  18. <body>
  19.     <form id="Form1" runat="server">
  20.     
  21.      <h2>Custom DropDownList values</h2>
  22.     
  23.      <div>
  24. <FTB:FreeTextBox id="FreeTextBox1" runat="Server" />
  25. <asp:Button id="SaveButton" Text="Save" onclick="SaveButton_Click" runat="server" />
  26. </div>
  27. <div>
  28. <asp:Literal id="Output" runat="server" />
  29. </div>
  30. </form>
  31. </body>
  32. </html>