ComponentArt.Web.UI

 

Username: yssoft
Password: 1ce0ebc023

http://www.componentart.com/user/sitelogin.aspx

登录后可以下载最新的

 

http://blog.csdn.net/aliang128/archive/2004/10/22/147212.aspx
http://bbs.topsage.com/dispbbs_123_161434_17_1.html
新的特性:
Advanced User Interface Control Suite: Includes 18 Premium User Interface controls for development of sophisticated web applications.
包括18个主要的用户界面控件,开发人员能够使用这些控件开发比较复杂的Web应用程序。
Calendar
CallBack
ComboBox
Dialog
Editor
Grid
Menu
MultiPage
NavBar
Rotator
SiteMap
Snap
SpellCheck
Splitter
TabStrip
ToolBar
TreeView
WebChart Lite

Built for ASP.NET: Available in three progressively more powerful framework builds: ASP.NET 1.0, ASP.NET 2.0 and ASP.NET AJAX.
适用于不同框架的各个发行版本都有:ASP.NET 1.x, ASP.NET 2.0还有ASP.NET AJAX。

Deepest ASP.NET AJAX Integration: The first true controls to fully exploit the most advanced AJAX framework available.
第一款全面支持AJAX框架的控件,并与ASP.NET AJAX高度集成。

Comprehensive Documentation and Support: Featuring complete product documentation online and all-inclusive technical support resources.

Enterprise Consulting and Training: Customized consulting and training services are offered to support Enterprise development projects involving larger teams of developers.

Flexible Licensing: Available at Developer, Subscription and Enterprise levels.

ComponentArt.Web.UI 2007.2全面支持AJAX,并与ASP.NET AJAX高度无逢集成,目前有适用于ASP.NET 1.x, ASP.NET 2.0, ASP.NET AJAX三个平台的三套控件组。全面支持代号为“Orcas”的Visual Studio 2008,浏览器的支持也扩大至支持:Internet Explorer 5-7,Firefox 1-2,Netscape 7-8,Mozillas,Opera 8-9,Safari 1等。
继2007.1版推出三个新的成员(ComboBox, Dialog, ToolBar)后,现在2007.2版又加入了几个新的成员,其中Editor当数最令人心动的一个。此外,该版本的更新中,也侧重于对Web Service的支持。


把我的出纳软件利用起来,然后帮我推荐(1500-1800元/套),每推出成功一家回报150元。

 


2005/11/30
关于ComponentArt.Web.UI.Calendar控件的使用
关于ComponentArt.Web.UI.Calendar
在aspx前台文件里作如下声明:
<%@ Register TagPrefix="ComponentArt" Namespace="ComponentArt.Web.UI" Assembly="ComponentArt.Web.UI" %>

<COMPONENTART:CALENDAR id="CldCalendar" runat="server" ControlType="Calendar" PopUp="Custom"></COMPONENTART:CALENDAR>

<COMPONENTART:CALENDAR id="CldPicker" runat="server" PickerFormat="Custom" ControlType="Picker"></COMPONENTART:CALENDAR>
 
     ControlType字段:"Calendar"表示对日期框设置  "Picker"表示对displaybox进行设置
     必须分别对"Calendar"和"Picker"设置默认当前日期:
     Public WithEvents CldCalendar As ComponentArt.Web.UI.Calendar
     Public WithEvents CldPicker As ComponentArt.Web.UI.Calendar
     CldPicker.TodaysDate = .CreditCardExpiration
     CldCalendar.TodaysDate = .CreditCardExpiration
 
设置.MinDate属性  即选择日期的最小限制,同理.MaxDate属性
CldCalendar.MinDate = New Date(Date.Now.Year, Date.Now.Month, Date.Now.Day)
 
设置禁止访问日期的范围
Calendar.DisabledDates.SelectRange(ByVal fromDate As Date, ByVal toDate As Date)

 
心得:
如果在页面上的calendar控件已经选择了一个先前的日期,而又不希望在EDIT BUTTON被点击后让它选择从所选择日期到当前日期的范围,则可以使用DisabledDates.SelectRange进行设置.
要注意的是不能在控件被赋值之前设置比值大的最小值,所以在这种情况下要在Page_Load事件中加日历的话只能先设置已选择日期为最小值再把已选择日期到当前日期间的日期用DisabledDates.SelectRange屏蔽.否则就只能在Page_PreRender事件中加了.16:34:02 | 写入日志 | 计算机与 Internet

http://www.web3.cn/Content,2006,5,30,139.aspx
http://topic.csdn.net/t/20050419/22/3950364.html

你可能感兴趣的:(component)