3700 INR for Online Subscription + 900 INR for ASP.NET Hands-on videos total 4500 INR, click for payment

Complete Hands-on for ASP.NET and are as follows: -

Right from basic to advance and many more how to's are to be added on regular basis. Read the complete list, if certain How to's are not included, request them to be added.

How to write a string on the web page?

Label & Literal

  • How to write Text for the asp:Label control?
  • How to specify the text of the Label control from the code-behind?
  • How to write Text for the asp:Label control?
  • How to write CSS formatted text on the web page?
  • How to apply CSS style in the Label control from code-behind?
  • How to associate an asp:Label with a TextBox or other Form control?
  • How to write HTML content from the server side to ASP.NET Page?
  • How to write encoded text on the web page?
  • TextBox

  • How to programmatically set the TextBox value and get the TextBox value?
  • How to render a password type textbox?
  • How to specify the AutoComplete type of the TextBox and what is the use of it?
  • How to submit a page to the server when the TextBox value has changed?
  • How to specify the width of the TextBox?
  • How to specify the Maximum characters allowed for the TextBox?
  • How to make the TextBox readonly or disabled?
  • How to display a multi-line textbox and specify the height and width of the textbox?
  • How to limit the maximum number of characters allowed in the Multi-line textbox?
  • How to avoid text wrapping into the multi-line textbox?
  • How to apply CSS style into the asp:TextBox?
  • How to set default focus to a particular TextBox when web page loads?
  • Button

  • How to fire Server Side event on click of the button?
  • How to access the CommandName property of the asp:Button (using OnCommand event) and what is the use of it?
  • How to access the CommandName property of the asp:Button (using OnClick event) and what is the use of it?
  • How to access the CommandArguments of the button?
  • How to fire JavaScript function on click on the Button and prevent the Form submission?
  • How to avoid multiple clicks while submitting the form on the server?
  • How to post a page to another page in ASP.NET?
  • How to specify the Tab index for the TextBox, Button or any other asp.net form control?
  • How to specify the Tooltip for the ASP.NET Server controls?
  • How to specify a default button on the page so that when user hits the Enter key that button gets clicked?
  • How to apply CSS style from the sever side to the asp:Button control?
  • LinkButton

  • How to fire a server side event on click of the Link?
  • How to post the page to another page on click of the Link?
  • How to fire client JavaScript function on click of the asp:LinkButton?
  • ImageButton

  • How to specify image as a button and fire server side event?
  • How to fire JavaScript function on click of the asp:ImageButton?
  • How to apply CSS style from the server side to the asp:ImageButton control?
  • Image

  • How to specify the alternate text of the Image button so that if image is not available, the text displays?
  • How to fire JavaScript function on click of the image?
  • How to apply CSS style to the image?
  • In case I just need to display the image, should I use asp:Image control or html img tag? In which scenario asp:Image control should be used to display the image?
  • HyperLink

  • How to specify the hyperlink to another page or website in asp.net?
  • How to decide I should use either html anchor tag or asp:Hyperlink control on my page?
  • How to specify an image as HyperLink in ASP.NET or HTML?
  • How to remove the border that by default comes when an image is specified as Hyperlink?
  • How to remove the border that by default comes when asn image is specified as Hyperlink using asp:HyperLink control?
  • How to avoid using asp:Hyperlink completely on my page without compromising the flexibility of controlling the redirect url?
  • How to open a page in new browser window or tab when clicking on the link?
  • How to apply CSS from server side to the link?
  • DropDownList & ListBox

  • How to render a DropDownList/ListBox through asp.net and add items?
  • How to populate DropDownList/ListBox from the datasource?
  • How to add items in DropDownList/ListBox items from the server side?
  • How to insert an item to the specified location in the DropDownList or ListBox?
  • How to fire a server side event when the selected item of the DropDownList/ListBox changes?
  • How to specify the number of items to appear in the ListBox?
  • How to retrieve the selected value & text of the DropDownList/ListBox item?
  • How to provide option to the user to select multiple items from the ListBox?
  • How to iterate (loop) through the items of the DropDownList or ListBox and find the selected item(s)?
  • How to auto select an item from the DropDown?
  • How to avoid appending the new items in the DropDownList or ListBox on top of the existing items?
  • How to write “Please select …” as the first item in the DropDownList/ListBox while populating them from the server side?
  • How to populate a DropDownList based on another DropDownList selected value?
  • CheckBoxList

  • How to add items in the CheckBoxList & how to add items from the code-behind?
  • How to render the CheckBoxes and specify the vertical and horizontal direction?
  • How to render the CheckBox in the ordered list or un-ordered list or table or in a flow?
  • How to add items from the code behind and insert an item at specified place?
  • How to find out which and how many checkboxes are checked.
  • RadioButtonList

  • How to add items in the RadioButtonList & how to add items from the code-behind?
  • How to render RadioButtons vertically and horizontally?
  • How to render the RadioButton in the ordered list or un-ordered list or table or in a flow?
  • How to add items from the code behind and insert an item at specified place in the RadioButtonList?
  • ImageMap

  • How to make a particular region of the image clickable so that it redirects the user to another page?
  • How to make a particular portion of the image clickable so that it fires a server side method?
  • BulletList

  • How to list items in the Ordered-List or UnOrdered-list from the server side?
  • How to specify the Bullets as a custom Image in the Un-ordered list?
  • How to display hyperlinks using the BulletedList control?
  • How to fire server side event by clicking the items of the asp:BulletedList control?
  • How to populate BulletedList items from server side by providing DataSource or inserting item?
  • HiddenField

  • How to keep a hidden field value and how to access its value?
  • Calendar

  • How to display a calendar on the page in ASP.NET?
  • How to specify Caption of the calendar?
  • How to specify different styles of Next Previous text of the months and the day of the week?
  • How to fire server side event on click of the date?
  • How to specify the default selected date from the code behind?
  • How to specify the Selection mode so that user can select entire month, entire week?
  • How to retrieve the selected date/dates from the Calendar control?
  • How to apply styles in the Calendar control?
  • How to set the holidays in the Calendar control?
  • How to disable a specific date in the Calendar?
  • How to disable the date’s of other month?
  • How to determine if the selected date is today’s date or weekend?
  • AdRotator

  • How to create an Ad rotator so that different advertisements banners can rotate?
  • How to specify the Keywords so that advertisements banner shall rotate based on that?
  • FileUpload

  • How to upload a file on the server?
  • How to check if a file has been selected to upload?
  • How to restrict the user to upload only specific type of files (.gif or .jpg file) on the server?
  • How to limit the size of the file to upload?
  • How to upload multiple files?
  • How to upload multiple files using jQuery?
  • How to increase the maximum request size limit in order to upload large files?
  • Panel

  • How to add controls in the Panel and how to control its output?
  • How to control the width & height and scrollbar behaviours of the Panel control?
  • PlaceHolder

  • How to place controls on the page without wrapping inside a div container?
  • Chart

  • How to create a bar and column chart?
  • Error handling

  • How to handle error in ASP.NET? How to handle multiple types of error?
  • How to log errors in Log file (one log file per day)?
  • How to log errors in system event?
  • How to log application level error and redirect the user to error page?
  • Web.config

  • How to write & retrieve appSettings and connectionStrings settings from web.config file?
  • How to encrypt .config appSettings and connectionStrings values for security reason?
  • How to create a custom section in the web.config file and retrieve its value?
  • Web.config

  • How to retrieve data from the database?
  • How to insert records into the database?
  • How to update record into the database?
  • How to delete a record from the database?
  • How to use the stored procedure in ADO.NET?
  • How to save the Image into the database and show on the page?
  • How to retrieve the saved imaged into database and show them on the page?
  • How to bind data using SqlDataReader and where to use SqlDataReader?
  • How to retrieve records from SqlDataReader?
  • How to work with multiple results set using DataSet?
  • How to work with multiple results set using and SqlDataReader?
  • How to use transactions in ADO.NET?
  • How to check for the existence of records into the database?
  • GridView

  • How to populate GridView from code behind?
  • How to sort the GridView data?
  • How to do pagination for the GridView data?
  • How to write message when there is no data to display in GridView?
  • How to select a GridView row and persist the selected record in the GridView?
  • How to select multiple records from GridView and retrieve selected records value?
  • How to select multiple records from the GridView and persist the selection during pagination?
  • How to select all records (checkboxes for each record)?
  • How to generate edit, delete, update and select buttons automatically?
  • How to perform Edit, Update, and Delete operation in GridView?
  • How to add a button with custom command name and perform an operaiton?
  • How to delete multiple selected records from the GridView?
  • How to do custom pagination in the GridView to achieve better performance in case we have large number of data to display?
  • How to do SEO friendly pagination in GridView?
  • How to work with the nested GridView (GridView inside another GridView) and populate the data?
  • How to perform mouseover effect on GridView rows using CSS?
  • How to get the primary key value of the GridView rows in JavaScript?
  • ListView

  • How to perform CRUD (Create Read Update & Delete) operation in ListView.
  • How to do pagination in ListView?
  • How to do custom pagination in ListView?
  • DetailsView

  • How & where to user Repeater control?
  • How to render ordered list or un-ordered list (bulleted) using Repeater control?
  • Validations

  • How to validate a TextBox as a mandatory field?
  • How to validate a DropDownList / ListBox?
  • What is CauseValidation property and how to avoid validation on clicking of a button?
  • How to validate two different sets of Form fields separately?
  • How to validate a textbox for range of values?
  • How to validate a textbox for correct date?
  • How to validate a valid email address entered into the textbox?
  • How to compare two textboxes for equality like password and confirm password?
  • How to perform custom validation in ASP.NET?
  • How to display all validation failed errors in the Alert box or as a summary?
  • Menu

  • How to generate a menu based on SiteMap file?
  • How to generate Menu from the database?
  • User Control

  • How to create a user control and use it in the content page or master page?
  • How to cache the user control data?
  • How to access user control property in the content page or master page?
  • How to load the user control dynamically?
  • Master Page

  • How to work with Master pages in ASP.NET? 198
  • How to change the Master page dynamically for a content page? 201
  • How to nest more than one master page? 203
  • How to access Master page control from the content page? 205?
  • How to access master page variable/property from the content page? 207
  • Authentication & Authorization - LoginView, LoginStatus and LoginName and other controls

  • How to implement Forms Authentication security in ASP.NET?
  • How to get the UserName of the user logged into our application using Forms Authentication?
  • How to implement roles based authentication in ASP.NET?
  • Themes & Skins

  • How to use themes in ASP.NET?
  • How to change the theme of the page dynamically?
  • How to set the skin of the asp.net control?
  • How to change the skin of the asp.net control dynamically?
  • Localization and Globalization

  • How to list cultures in the DropDown?
  • How to create a multi-lingual web site / web application in ASP.NET?
  • URL Routing

  • How to re-write the URL?
  • How to make SEO friendly pagination for GridView?
  • Debugging & Tracing

  • How to debug an ASP.NET Application?
  • How to Trace an ASP.NET Application?
  • How to enable/disable tracing in all pages of the application?
  • How to see consolidated trace information of all pages of the application rather than seeing each page one by one?
  • How to save tracing information into the XML file?
  • Session Management

  • How to pass data from one page to another page using querystring?
  • How to save and retrieve data to and from cookie?
  • How to use Session variables?
  • How to configure & use State Server session management?
  • How to configure and use SQL Server session management?
  • Caching

  • How to perform page output caching in ASP.NET?
  • How to implement partial or fragment caching or How to cache User control data?
  • How to implement page output caching based querystring value of the page?
  • How to store data into Cache and retrieve it?
  • How to implement time based caching in ASP.NET?
  • How to implement file dependency caching in ASP.NET?
  • How to implement SQL Caching in ASP.NET (Poll based SQL Cache dependency)?
  • How to use Push SQL Cache dependency in ASP.Net?
  • Custom Control

  • How to create a custom server control to render a html Table with data in ASP.NET?
  • ASP.NET AJAX

  • How to do partial page update in ASP.NET AJAX?
  • How to conditionally update the content without page refresh?
  • How to work with multiple Update Panels in ASP.NET AJAX?
  • How to associate a Button outside UpdatePanel to trigger the partial (asynchronous) postback?
  • How to trigger a complete postback from the button inside the UpdatePanel?
  • How to update the UpdatePanel from server side?
  • How to display “Please wait ….” message or “Progress Bar” image when loading the data from the server?
  • How to update page content after a certain interval of time?
  • How to load ScriptManager necessary resource file from CDN?
  • How to consume a Web Service in ASP.NET AJAX?
  • How to maintain browser history in ASP.NET AJAX?
  • Working with Files and Folders

  • How to Read and Write a text file in ASP.NET with C#?
  • How to rename/move a file?
  • How to delete a file?
  • How to Load all files including their properties of the folder?
  • How to Load all directories of the folder?
  • How to create and delete a directory?

  • Get online subscription + practical hands-on ASP.NET videos: -

  • Do an e-transfer at the following HDFC Bank account number: - (Cash Deposit is not acceptable).
  • Account number: 06522000001756, By Name: QuestIT Pvt. Ltd. (HDFC), Account Type: Current, Branch: Mulund(W), DeviDayal Road ,Mumbai - 80.
  • IFSC Code (INDIAN FINANCIAL SERVICE CODE) is HDFC0000652 for e-transfer.
  • Note: If payment is through pay check, subscription log-in details/dispatch of DVD will only be done after the pay check is realized.

  • So give your time and we guarantee your upgradation......email us at questpond@questpond.com,questpond@yahoo.com or else you can call us at 9967590707 or 02266752917

    We are on Social

    Follow us on Twitter

    See Hashtag #Questpond on Twitter
    to see what others have posted.

    Like us on Facebook

    See Hashtag #Questpond on Facebook
    to see what others have posted.

    Follow us on G+

    See Hashtag #Questpond on Google Plus
    to see what others have posted.

    Follow us on Linkedin

    See Hashtag #Questpond on Linkedin
    to see what others have posted.

    Subscribe

    Are you busy or free or bored or excited or sad or happy or angry or lonely or with friends or successful or not so successful or lucky or not so lucky or famous or ignored or in love or out of love or somewhere in between or confused or extrovert or introvert or rich or trying to be rich or anything that this small paragraph would have missed to mention - this is one blog that you should not miss - ever.