"How to use option group with DropDownList" by CMSN Software Tutorials, shows you how to integrate option group in asp.net DropDownList. Default functionality of asp.net DropDownList doesn't support for option groups. So we thought to implement custom server control for supporting option group
Chrome Extension v1.0 Released
0Chrome extension v1.0 released for the CMSN Software Tutorials. Now you can read tutorials without visiting the web site. Only thing you need to do is download and install the Chrome Extension for CMSN Software. When you click on the CMSN Software logo on the chrome toolbar, it will show you the latest 5 post of the CMSN Software Tutorials.
How to dynamically resize images
2"How to dynamically resize images" by CMSN Software Tutorials, shows you how to resize and cache images dynamically. The logic is to pass the image size as parameters and based on the parameters we generate a dynamic image. Dynamic image will be cache on client browser, server level and application level.
How to Compress Css and JavaScript Runtime
2In this time CMSN Software Tutorials has decided to provide a very useful tutorial. "How to Compress Css and JavaScript Runtime" shows you how to compress, combined, compact and cache Style Sheets and JavaScript files.
How to use custom pagination
0In this time CMSN Software Tutorials has decided to provide a enhancement for our previous tutorial("How to use pagination with repeater"). "How to use custom pagination" shows you the way of integrating data level pagination with the asp.net Repeater control. Here we are using hyperlinks for the pagination points instead of using LinkButtons. that means users can bookmark any page at any time.
How to use pagination with repeater
0In this time CMSN Software Tutorials has decided to provide a very useful tutorial. "How to use pagination with repeater" shows you the way of integrating pagination with the asp.net Repeater control. Usually we use DataPager for pagination. But DataPager Control Can be use only with controls which implement IPageableItemContainer interface like ListView. So we decide to show you how to implement custom pagination control to support repeater.
How to use Ajax auto complete in asp.net
2In this time CMSN Software has decided to provide a little bit of advance tutorial. "How to use Ajax auto complete in asp.net" simply shows you how to implement auto complete text box in ASP.Net. Technically we are passing value to server side using simple Ajax request and then search inside a xml file using Linq to xml. Then format and display the response as a auto complete suggestions. As usual in this tutorial also CMSN Software shows how to use multiple technologies to accomplish same task.
How to call CSharp function in Ajax
2We thought to expand the idea of Ajax request little bit further in order to present a very useful concept for achieving a flexible development approach with in your application. So, CMSN Software presents this tutorial "How to call CSharp function in Ajax " which explains how to call CSharp method using JavaScript via Ajax request.