Thursday 29 August 2013

How to show Jquery progress bar in ASP.NET Web application?


In this article I will explain How to show Jquery progress bar in ASP.NET Web application.

My Agenda is when I click the Order button then show the Progress bar, once the process is completed then progress bar will be closed automatically.

First we need add below two Jquery scripts in Scripts folder.
Add Jquery reference in .aspx page.

<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.blockUI.js" type="text/javascript"></script>

Below is the code for conformation for process . Click the Ok button, Progress is showed.

How to create AJAX Model Popup Extender in ASP.NET ?


In this article I will explain How to create AJAX Model Popup Extender in ASP.NET.

First we need to create CSS File. In this CSS File add below CSS Script. Below CSS Code is very useful for Model Popup designing.

How to create Kendo UI pie chart in asp.net web application?


In this article I will explain how to create Jquery pie chart in asp.net web application.

First we need to add web service to the web application. In that web service need write below code.

Web service code:

Add below code in after namespaces

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]