Pages

Sunday, January 31, 2010

TinyMCE - Javascript WYSIWYG Editor

TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is very easy to integrate into other Content Management Systems.













Click here to get it now absolutely FREE !!!

Friday, September 18, 2009

ASP.NET Dynamic Data

Dynamic Data Road Map

ASP.NET Dynamic Data 4.0 Preview 4 Refresh

Refreshed 6/26

  • DomainDataSource had errors updating foreign keys
  • Cannot edit many to many relationship with table per type inheritance
  • Better exception handling

The ASP.NET Dynamic Data Preview 4 Refresh is a new release of Dynamic Data based on some of the early bits we are working on for the next release of the framework. This preview release runs on .NET 3.5 SP1 / VS 2008 SP1. The final version will ship with .NET 4.0 and VS 2010.

This preview shows some of the areas in which we are expanding Dynamic Data:
  • A new QueryExtender control, contained in the sample projects to simplify common data filtering operations. It supports a rich ASP.NET declarative query syntax that makes it easy to do things like search data for text or have filters based on ranges.
  • A new Dynamic Data filter model that enables the developers to apply templates to pages just like field templates (including user defined filters).
  • Support for inheritance in Entity Framework and Linq to SQL.
  • Support for many to many relationships in Entity Framework.
  • New Entity Templates which allow fine control over how an object is displayed and edited.
  • Attributes for controlling the filters appearance and order.
  • A DomainDataSource control that uses a data provider model which enables the developers to build their own custom business logic.
  • A datasource control for ADO.NET Data Services that works with ASP.NET and an ADO.NET Data Service Provider for Dynamic Data.
  • Starter templates for building new applications with the bits for DomainService, Entity Framework and Linq to SQL.
  • Simple Dynamic Data for adding field templates, validation, and entity template support to existing ASP.NET data driven pages.
Download: ASP.NET Dynamic Data Preview 4 Refresh
This also contains the Dynamic Data Futures project which contains some things we the team is considering for future releases of Dynamic Data.

ASP.NET Dynamic Data MVC Preview contains a preview release of Dynamic Data MVC. This contains samples of how Dynamic Data support may be added to future releases of MVC.

Friday, September 11, 2009

Take Control of your Web Site

Beezilla CMS website builder is a simple and powerful website content management system (CMS). With Beezilla CMS website builder you can easily create your website on your own.

Creating your website is simple and quick. Choose a website design from our template library or create your own custom template. Add pages to your website with a click of a button. Save some time and create your content using our visual elements library.

Beezilla’s CMS interface is simple, fast and easy to use. Our technology is based on leading web technologies: Apache, PHP, MySQL and ExtJS.

No more delays, no more expensive maintenance cost You can take control of your web site NOW. It's Free!!!

Click here for details .......

Saturday, September 5, 2009

How To Create MultiColum Dropdownlist using DropDownExtender Control

In this programming field a developer always facing a new requirement, need from their clients and as per the requirement new controls, tips and techniques developed.

Today, i am here to find out that how can we create a multi coloumn dropdown in asp.net

Visit the following link .....

AJAX CascadingDropdown Control SQL DataBinding

AJAX CascadingDropdown extender control provides the functionality to load the data in ASP.Net dropdown list controls using AJAX based web service methods. AJAX CascadingDropdown extender works with 2 or more Dropdownlist controls that enable you to load the primary data in first dropdown and further it populates the second Dropdown list control dynamically with related data on selected index change event of first dropdownlist.

All this functionality performs without refreshing the ASP.Net web page. In this sample we have used the Northwind SQL Database to load the category names in first Dropdownlist control that will populate the related products into the second dropdownlist control accroding to the category name selected.

Download the sample code .......

Click here for details .......

Sunday, August 16, 2009

Flash Control for ASP.NET

FlashControl is an ASP.NET server control which allow you to add swf Flash movies or Flex in your ASP.NET projects. As any WebControl, you can add FlashControl in Visual Studio Toolbox, and just drag and drop it in your ASP.NET web pages ! It is now compatible with ASP.NET AJAX!






Click here for details ......

Sunday, August 9, 2009

ASP.NET Tab Generator

One of the controls I feel ASP.NET is missing is a tab control. While this itself is not a control, it will create the code you need to simulate tabs and tab views.

You can see an example of how the feature works right now! The "Info" and "Changelog" tabs above were made using this tool.

Click here for details ......

Lazy Loading jQuery Tabs with ASP.NET

This article looks at efficient use of jQuery tabs when displaying data. Specifically, it covers how to lazy-load data, so that it is only accessed and displayed if the tab is clicked.

Lazy Loading is a well-known design pattern that is intended to prevent redundant processing within your application. In the case of tabbed data, there seems little point retrieving and binding data that appears in a tabbed area that no one looks at. So, this examples covers how to defer data access and display until the user wants it - which is defined by them clicking the relevant tab.

Click here for details ......

Sunday, July 26, 2009

Free cross-browser WYSIWYG editor

Finally, a free cross-browser WYSIWYG editor that's packed with every rich-text editing feature you need to make your content management system that much better.

Setting up open WYSIWYG is so easy, you can quickly turn any textarea into a powerful WYSIWYG editor with just a few simple lines of code.

Packed with every rich text editing feature you need, open WYSIWYG gives you total control over formatting your text. The ultimate textarea replacement for your content management system.

Click here for details .......

Monday, July 20, 2009

How to create PDF document using PDFDoc Scout library in ASP.NET

This page contains step by step tutorial how to create PDF document in ASP.NET using PDFDoc Scout library.

IMPORTANT NOTE: To use PDFDoc Scout library on web-server you have to have additional "Web License"
PDFDoc Scout library is capable of generating of in-memory PDF files so file needn't to be stored as a file on hard drive and can be streamed right into the browser window.
There is a special "GenerateInMemoryFile" property for such purposes. Set this property to TRUE and the library will generate and keep your PDF as in-memory stream without using of any temporary files.
1) Install PDFDoc Scout library on your computer and run Visual Studio.NET
2) Go to File menu and select New Project:
New project menu
Select ASP.NET Web Application project type and click OK
ASP.NET new project wizard
3) Visual Studio.NET will create new empty ASP.NET project. Double-click on the empty space of the form:
New blank project generated by ASP.NET
This will open source code editor window on procedure handling Page_Load event. We will place our code for PDF PDF animation generation into this procedure:
Page load handler procedure generated by ASP.NET IDE
4) Use the following code for procedure (you can simply copy and paste this code from this page into ASP.NET source code editor window):

'Put user code to initialize the page here
Dim PDFDoc
Dim Size As Long
Dim MemoryImage As System.Array
' create new PDFDoc object
PDFDoc = CreateObject("PDFDocScout.PDFDocument")
' initalize library
PDFDoc.InitLibrary("demo", "demo")
' set in-memory mode
PDFDoc.GenerateInMemoryFile = true ' set to True to generate PDF document in memory without any files on disk to output it to end-user to browser
' starts PDF document generation
PDFDoc.BeginDocument ' start PDF document generation

' add text to current page
PDFDoc.Page.AddText "Hello, World!", 100, 100, 15

PDFDoc.EndDocument ' close PDF document generation

' get size of generated in-memory PDF document
Size = PDFDoc.BinaryImageSize
' create new buffer with size equal to generated pdf document file
Dim Buffer(CInt(Size)) As Byte
' get in-memory pdf file as byte stream
MemoryImage = PDFDoc.BinaryImage
' copy byte stream into buffer
Array.Copy(MemoryImage, Buffer, Size)
' clear http output
Response.Clear()
' set the content type to PDF
Response.ContentType = "application/pdf"
' add content type header
Response.AddHeader("Content-Type", "application/pdf")
' set the content disposition
Response.AddHeader("Content-Disposition", "inline;filename=helloworld.pdf")
' write the buffer with pdf file to the output
Response.BinaryWrite(Buffer)
Response.End()
' set library object instance to Nothing
PDFDoc = Nothing

5) Now run ASP.NET project using Debug | Start command:
Start project menu
Visual Studio.NET will run ASP.NET project on web-server and you will see Internet Explorer window with generated PDF document:
PDF document generated by ASP.NET application
Click here to download the source code of this example.