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