Implementation of Color Box in Asp.net

Implementation of Color Box in Asp.net

Follow two steps for implementation Step 1: Add below section to Head Tag
Crude Operations using RunTime TextBoxes Controls in Asp.net

Crude Operations using RunTime TextBoxes Controls in Asp.net

Sometimes we need to create text boxes on runtime on button click and store the values from runtime textboxes in Asp.net .aspx Page------------------------------------------------------------------------ .aspx.cs Page------------------------------------------------------------------------ if (!Page.IsPostBack) { ViewState["NumberOfControls"] = NumberOfControls = 0; } else { this.createControls(); }
Show Progress Bar using JQuery in Asp.net

Show Progress Bar using JQuery in Asp.net

Step 1:
Show Image Preview using Java Script and File Upload Control in Asp.net

Show Image Preview using Java Script and File Upload Control in Asp.net

Sometimes we need that by selecting the image by Fileupload Control and display the image in image control Follow the Below Code Step 1:
Dynamic Data Manipulation using XSLT using c# methods

Dynamic Data Manipulation using XSLT using c# methods

If you want to display dynamic data/from database in xslt then this is a way to do your requirements. In this we are directly firing a query which returns data in xml format then according to the node names u can transform your xslt. Step 1: Create a xslt named as Sample.xsl < ?xml version="1.0" encoding="UTF-8" ?>
Category name :
Details on Category :
How to apply an XSLT Stylesheet in C#

How to apply an XSLT Stylesheet in C#

The main purpose to use XSLT in C# for making your application faster while rendering from server. this is the following code on how to use simple xslt files in ur aspx page by using c#. This is only for rendering a static data only not dynamic means the xslt contains hard coded data only. This can be handy when u r using any header or footer or any portion of your application which is a bit heavier and taking more time to load. Step 1: Create a file named as Demo.xsl and put the below code. < ?xml version="1.0" encoding="UTF-8" ?>
Test xslt page
Demo text here