当前位置: 首页 > 图文教程 > 网络编程 > ASP > asp+语法介绍(五)----asp+的服务器端编程控件篇

ASP
session的用法具体解说
模仿PHP写的ASP分页
用排序串字段实现树状结构(例程:保存贴子内容)
Recordset对象方法详解
为Html 的Select 加一个提示语和输入方法
PerlScript编写ASP
嘿,大家瞧瞧这老外在页面之间传递元素的办法
防止使用者按上一頁按鈕
利用owc建立EXECL的例子
ASPHttp使用范例-远程读取别人的页面,并自动写入库
实现文件下载而不是由ie打开的代码
ASP在Scripting.Dictionary对象的作用是什么?
一种效率极高的分类算法(转--非常好,帮助很大对于想做好asp的朋友)
论坛关键技术,树状记录表的堆栈展开
例子:文本搜索
用ASP实现播放Flash的例子
利用global.asa计划执行程序(转)
关于如何保障Winnt +asp +sql web站点的安全经验
用Asp修改注册表
优化MICROSOFT ACCESS提高速度

ASP 中的 asp+语法介绍(五)----asp+的服务器端编程控件篇


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 27 ::
收藏到网摘: n/a

       使用定制的服务器控件
  在asp+中提供了45个已经做好了的服务器控件,我们可以将他们象黑盒子一样的使用。除此以外,开发者还可以使用任何第三方开发的服务器控件
  在下面的例子中,我们要用到一个通过<acme:calendar runat=server>标签声明的组件,请注意,在文件的第一行必须使用<% Register %> 来声明 "Acme Xml "标签的的前缀"Acme".在asp+ 文件中,将会使用这个命名的服务器控件的类的实例。
  <%@ Register TagPrefix="Acme" Namespace="Acme" %>
  
  <html>
   <head>
   <link rel="stylesheet"href="intro.css">
   </head>
  
   <script language="VB" runat=server>
  
   Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
   Message.Text = "Hi " & Name.Text & ", you selected: " & Category.SelectedItem.Text & " on: " & MyCal.Date
   End Sub
  
   </script>
  
   <body>
  
   <center>
  
   <form action="intro7.aspx" method="post" runat="server">
  
   <asp:adrotator AdvertisementFile="ads.xml" BorderColor="black" BorderWidth=1 runat="server"/>
  
   <h3> Name: <asp:textbox id="Name" runat="server"/>
  
   Category: <asp:dropdownlist id="Category" runat=server>
   <asp:listitem >psychology</asp:listitem>
   <asp:listitem >business</asp:listitem>
   <asp:listitem >popular_comp</asp:listitem>
   </asp:dropdownlist>
  
   <asp:button type=submit text="Lookup" OnClick="SubmitBtn_Click" runat="server"/>
  
   <p>
  
   <Acme:Calendar id="MyCal" runat=server/>
  
   <p>
  
   <asp:label id="Message" runat="server"/>
  
   </form>
  
   </center>
  
   </body>
  </html>
  
  声明Acme 的 文件
  using System;
  using System.Web;
  using System.Web.UI;
  using System.Collections;
  
  namespace Acme
  {
   public class Calendar : Control, IPostBackEventHandler, IPostBackDataHandler
   {
   private String[] monthNames = new String[12];
   private DateTime currentDate = DateTime.Now;
   private String backColor = "#dcdcdc";
   private String foreColor = "#eeeeee";
  
   protected override void Init()
   {
   // Todo: We should remove the need to call this
   Page.RegisterRequiresPostBack(this);
   Page.RegisterPostBackScript();
  
   currentDate = DateTime.Now;
  
   // Todo: Hack needed because COOL doesn't support array initializers yet
   monthNames[0] = "January";
   monthNames[1] = "February";
   monthNames[2] = "March";
   monthNames[3] = "April";
   monthNames[4] = "May";
   monthNames[5] = "June";
   monthNames[6] = "July";
   monthNames[7] = "August";
   monthNames[8] = "Se