Posts Tagged free
Free Asp.Net Live Chat Application for Websites- Open Source Application
Posted by VINKAS Solutions Madurai Tamilnadu India in Chat, Open Source Projects on July 5th, 2009
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
- .NET Framework 2.0
- ASP.NET AJAX download it : http://ajax.asp.net/downloads/default.aspx?tabid=47
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.
Want to leave feedback?
Please use Discussions or Reviews instead.
Free Ajax Controls for Asp.Net 2.0/3.0/3.5 – obout Suite Download
Posted by VINKAS Solutions Madurai Tamilnadu India in Control on June 29th, 2009
obout Suite for ASP.NET 2.0/3.0/3.5
![]() |
|
|
![]() |
DOWNLOAD oboutSuite.exe (12mb) |
This is a self-extracting archive. It includes all controls and hundreds of examples in C# and VB.NET |
Free Download ASP.NET AJAX Photo Gallery Control – NotesForGallery
Posted by VINKAS Solutions Madurai Tamilnadu India in Open Source Projects on June 28th, 2009
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
More Informations:
- Live Example: http://www.notesfor.net/post/NotesForGallery-ASPNET-AJAX-Photo-Gallery-Control.aspx#Demo
- Bugs: If you’re using it and found a bug, please check the “Issue Tracker” tab prior posting it.
- Latest Bits: If you want to download the latest stable version, use the “Releases” tab, and if you want to get the latest source codes, check out the “Source Code” tab.
- Blog: http://www.notesfor.net/
- How to install? http://www.notesfor.net/post/NotesForGallery-ASPNET-AJAX-Photo-Gallery-Control.aspx#Install
- Future release: Release notes 2.0 (expected summer 2009) http://www.notesfor.net/post/NotesForGallery-future-release-Release-notes-20-(expected-summer-2009).aspx
AJAX Multiple Files Upload in asp.net – Free Download
Posted by VINKAS Solutions Madurai Tamilnadu India in Control on June 28th, 2009
Click here to Download
FileUpload AJAX :: ASP.NET
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.
<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);
}
Latest Ajax Control Toolkit Extender Download
Posted by VINKAS Solutions Madurai Tamilnadu India in Ajax Toolkit on June 28th, 2009
ASP.NET AJAX Downloads
AJAX functionality is integrated in ASP.NET 3.5 SP1 and does not require any additional downloads.
In order to incorporate ASP.NET AJAX features in ASP.NET 2.0, refer to this page for the ASP.NET AJAX Extensions 1.0 release and other downloads, or upgrade to ASP.NET 3.5 SP1.
AJAX Control Toolkit — May 2009 Release
The AJAX Control Toolkit (May 2009 Release) contains more than 30 controls that enable you to easily create rich, interactive web pages. The AJAX Control Toolkit is a community project hosted at Microsoft CodePlex.
Microsoft AJAX Library 3.5
The Microsoft AJAX Library 3.5 is a standalone collection of the standards-based JavaScript classes that are automatically included when using ASP.NET AJAX in ASP.NET 3.5 SP1. It is supported by the most popular browsers and can be used to build client-centric Web applications without using ASP.NET.
ASP.NET AJAX Preview
Download the preview of the next version of ASP.NET AJAX. The next version of ASP.NET AJAX includes support for client templates, live bindings, and declarative client-side controls and behaviors. The ASP.NET AJAX Preview is hosted at Microsoft CodePlex.





Recent Comments