Archive for category Downloads

ASP.NET-AJAX MultiSelect ComboBox and ListBox Control by DevExpress

Coming in July 2009 – the multiple selection enabled ASPx List Box Control will ship with DXperience v2009 vol 2.

DevExpress.com is proud to announce the upcoming release of the ASP.NET List Box dropdown control – a feature-rich standalone multi-select component to simplify website design and allow end-user customization of ASP.NET-AJAX webpages.

Features of the new ASP.NET List Box control include:

- Single Select Mode – Allows end users to select only one item.
- Multi Select Mode – End users can select several items at once by using the mouse and keyboard keys: Shift (to select a range of items) and Ctrl (to add an item to a current selection)
- Checkbox Select Mode – Provides multiple selection by using a specific checkbox column (end users don’t need to use the Ctrl and Shift keys).

These features will be released as part of DXperience v2009 vol 2 in July 2009. Sneak peeks and more information on these features are available on the DevExpress Community Site at: http://community.devexpress.com/blogs/aspnet/archive/2009/06/23/sneak-peek-new-asp-net-editors-features-and-demo.aspx

To learn more about DevExpress and to download a free evaluation copy of DXperience, visit them online at
http://www.devexpress.com/Downloads/NET/

For more information, contact Kevin White by email at kevinw@devexpress.com or by phone at (818) 844-3383.

All trademarks and registered trademarks are the property of their respective owners.

, ,

No Comments

Free Asp.Net Live Chat Application for Websites- Open Source Application

Click Here to Download

The project is in re-thinking

I’m taking some time to think about the direction I want to take for the next months, and finally come up with the 1.0 release.

Current beta version

LiveChat Starter Kit is a C# .NET 2.0 web and windows forms application. The application can be use to enable live chat on an ASP.NET website.

Resources

Requirements

Basic Features

  • View the website’s visitors in real-time (Page current viewing, Referrer, etc).
  • An image reflecting the status of the operators (Online/Offline).
  • If no operator are online, the visitor will be able to leave a message.
  • The operators respond to chat with a Windows Forms application.
  • The operators can send link and canned messages to the visitor easily.
  • Multiple-operators is possible with the Sql Provider.
  • Notification when the visitor or operator is typing.
  • Sound on chat request or new messages on the operator console.

The project uses the ASP.NET 2.0 Provider Model and AJAX. The communication process is implemented throw Web Services and the operator console is a Smart Client Windows Forms application.

Last edited Sep 18 2008 at 2:40 PM by dstpierre, version 22

Want to leave feedback?
Please use Discussions or Reviews instead.

Archived page comments (6)

, ,

No Comments

Free Ajax Controls for Asp.Net 2.0/3.0/3.5 – obout Suite Download

obout Suite for ASP.NET 2.0/3.0/3.5

  • TreeView
  • Grid
  • Editor
  • Spell checker
  • Calendar
  • Easy menu
  • Combobox
  • Slide menu
  • AJAXPage
  • Scheduler
  • Context menu (with Easy menu)
  • TabStrip (with Easy menu)
  • Slide Panel (with Slide menu)
  • Two colors menu
  • Splitter
  • Super button
  • Tree_DB
  • Show
  • Flyout
  • Window
  • FileUploadProgress
  • ColorPicker
  • Toolbar (with Supper button)
  • Autosuggest (with Combobox)
  • Multilevel Combobox (with Combobox)
  • State Selector (with Combobox)
DOWNLOAD
oboutSuite.exe (12mb)
This is a self-extracting archive.
It includes all controls and hundreds of examples in C# and VB.NET

, ,

No Comments

Free Download ASP.NET AJAX Photo Gallery Control – NotesForGallery

NotesForGallery Project
NotesForGallery is a simple photo gallery control based on asp.net Ajax and JQuery (LightBox plugin). The objective of this control is to build a gallery easily and quickly. (2 lines of codes)

Current functionalities

  • Auto generates thumbnails.
  • Animated Slide Show
  • Display images in modal dialog

thGallery.jpg thLightBox.jpg

More Informations:

, , ,

No Comments

AJAX Multiple Files Upload in asp.net – Free Download

Click here to Download

FileUpload AJAX :: ASP.NET

Newest version: 1.2 (7/27/2007)

FileUploadAJAX is an open source ASP.NET 2.0 custom control that is similar to the predefined FileUpload control but with a key difference: AJAX behavior

And what does this means? This means that with the FileUploadAJAX we can upload files in an asynchronous way and without reloading the page… that’s all!

Furthemore there are a lot of configuration options that you will discover on the How to section

In order to begin, we show an easy example with very few code that will allow us to upload up to 5 “.gif” of less than 5KB each one. Test it yourself: upload “.gif” images, delete them, try to upload other kind of files, from more than 5 KB, etc.

Code.aspx
<cc1:FileUploaderAJAX ID=”FileUploaderAJAX1″ runat=”server” MaxFiles=”5″ />


Code.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (FileUploaderAJAX1.IsPosting)
this.managePost();
}

private void managePost()
{
HttpPostedFileAJAX pf = FileUploaderAJAX1.PostedFile;

if (pf.ContentType.Equals(”image/gif”) && pf.ContentLength <= 5 * 1024)
FileUploaderAJAX1.SaveAs(”~/temp”, pf.FileName);
}

,

No Comments