Visit Hot Scripts for large collection of Asp.NET tips and tutorials you can download today. Our tips and tutorials are quick and easy to learn so try them today.
Tutorials & Tips
-
Styles: CSS - Course ASP.NET 4 and Visual Studio 2010 - Lesson 10
In this video, We experiment with different styles and see their impact on the page. We start with using the * and find out that the changes there will be applied to the whole page. Then, we start making color, style, and text transformation to specific... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Using panels - Course ASP.NET 4 and Visual Studio 2010 - Lesson 8
In this video, we are going to discuss panels. A Panel is a good way of grouping information for large forms. We can divide a large form (like an insurance form) into meaningful pieces. We can have control over the properties of the panel (for example by... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
A Gentle Intro To jQuery in ASP.NET
JavaScript development could be hard work, especially if you try to make your code compatible with all those different web browsers. As an ASP.NET developer, you need to write some client side code from time to time. jQuery is JavaScript framework,... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
ASP.NET Session Explored
HTTP protocol, used for communication between web browser and web server, can't identify certain visitor between two requests. When web page is downloaded to client, connection is closed and server deletes all visitor's data. We say that HTTP protocol is... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Repeater vs. DataList vs. ListView vs. GridView
ASP.NET provides several data presentation controls: Repeater, DataList, ListView and GridView control. Each of these controls could be used for same purpose, to show data from data source. This tutorial compares standard ASP.NET data controls and... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
How To Create Read Only CheckBox In ASP.NET
CheckBox is ASP.NET control, used to take user input as checked or unchecked. This tutorial explains different ways how to create read only CheckBox control in ASP.NET web application.
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Web Application Versus Web Site - Course ASP.NET 4 and Visual Studio 2010 - Lesson 1 (free video)
In this video, we try to explore the difference between a web site and a web application. Although the structure of the site seems the same when we run it, there are key differences between the two. The major difference is that a web application has a... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Unordered list
In this video, we discuss two important CSS items: 1- The order of priority of a style. 2- How to transform an unordered list into a menu. We start first with the order of priority by declaring a color for a list item in the css file, then a different... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Manage styles
In this video, we wrapped up our quick introduction to CSS. In the upcoming videos we will cover more about CSS but within specific ASP.NET videos as we see fit. Here, we are concentrating on specific actions or events that could happen on a table or a... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
ASP.NET Visual Basic Timers
Timers can be useful when you want to run a task at regular intervals. For instance if you are checking the status of something or updating something every few minutes or seconds.
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Auto Complete and RadioButtons - Course ASP.NET 4 and Visual Studio 2010 - Lesson 4
In this video, we are going to discuss AutoComplete feature and radio buttons. We start first with the AutoComplete. To turn this feature on, we need to do two things: (1) Turn AutoComplete on for forms in IE. (2) Add the property AutoCompleteType to the... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Three ways to submit form data - Course ASP.NET 4 and Visual Studio 2010 - Lesson 5
In the video, we cover three ways of submitting form data. First we look at the simple button. We created a form that asked the user for the first name, last name, and language of choice. We add an event associated with the submit button to read the user... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Evolution of CSS - Course ASP.NET 4 and Visual Studio 2010 - Lesson 9
In this video, we start our discussion of CSS (Cascading Style Sheets). CSS describes the presentation semantics of our document. Before CSS, we used to change every page to apply the styles we are interested in (for example, the font). But of course... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
How to create crystal report within ASP.NET - Lesson 01 (free video)
The reporting is most important to any business system. For this crystal report supports to create report to with .NET and ASP.NET applications. In this video demonstration would explore how to create crystal report in ASP.NET Applications. And also you... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Input Boxes Properties and Events - Course ASP.NET 4 and Visual Studio 2010 - Lesson 3 (free video)
In this video, we look at different ways of creating textboxes: SingleLine (which is the usual way of using a text box for a single line of input like a user name and city), MultiLine (where the user can enter a scrollable list of text. This is useful in... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Label and Literal Control - Course ASP. NET 4 and Visual Studio 2010 - Lesson 2 (free video)
In this video, we are covering three points: Control tree, AssociatedControlId, and Literal control. First we start with the control tree. To do that, we created a page that contains few controls (label, dropdownlist, and a button). Then we added... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Posting Back to Another Page - Course ASP.NET 4 and Visual Studio 2010 - Lesson 6
In this video, we will discuss the ways of posting back page data. We start with the simple way of posting the information back to the same page. For that, we create a simple form that contains userâs first name and last name and a button that submits... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
ASP.NET Using Databases
ASP.NET websites would be useless without a data source. For this, most ASP.NET web applications use SQL Server. In this tutorial we will look into how to connect to a SQL Server database and how to use and save data on our web application.
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Command Buttons and Client Actions - Course ASP.NET 4 and Visual Studio 2010 - Lesson 7
In this video, we covered many concepts related to the button. First, we started with adding the ability to trigger the button by hitting then enter key. We did that by setting the defaultbutton property on the form. Then, we looked at the OnClientClick... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose -
Cookieless Session State Explained
ASP.NET Session State by default uses a cookie to store session ID. This tutorial explains verything you need to know about cookieless ASP.NET Session State. Tutorial covers common problems in implementation of cookieless Session State, security and... (show more)
Thanks for your rating. Consider leaving a review and let others know more about your experience. Add ReviewClose