Geekpedia Programming Tutorials






ASP.NET Daily Articles

ASP.NET Daily Articles

Microsoft portal site for the ASP.NET development community. Read ASP.NET articles and tutorials, Download Visual Web Developer, post to the forums and read ASP.net blogs.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
(380 resources in 19 pages)
RSS Feed RSS Feed     KlipFolio Klip Klip     Add to Google    Add to My Yahoo!    Subscribe in NewsGator Online    Add To Windows Live    Subscribe with Bloglines
Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2 ASP.NET

*****
5 from 1 votes

Jan 20th 2010

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2

In this two-part series, you will learn how to a typical front end of an E-commerce system using the Microsoft ASP.NET MVC 1.0 framework. In the first part, we focused upon system design, functionality design, architecture design, and database design. In this second part, we discuss the detailed coding-related aspects of the application.

.NET Culture and SQL Server ASP.NET

-----
No votes

Jan 19th 2010

.NET Culture and SQL Server

Care must be taken when ASP.NET applications have a CurrentThread.CurrentCulture setting other than the SQL Server Login Language setting. Reading, writing, and converting data can have incorrect or unwanted results. With very little work your routines can be made more robust.

Supporting a Printer-Friendly Page Button (Part I) ASP.NET

-----
No votes

Jan 18th 2010

Supporting a Printer-Friendly Page Button (Part I)

Peter investigates three solutions for getting junk off your page when the user wants to print a copy.

Populating Hierarchical Data Using Model Binders in ASP.NET MVC Application ASP.NET

-----
No votes

Jan 17th 2010

Populating Hierarchical Data Using Model Binders in ASP.NET MVC Application

ASP.NET MVC exposes the model binder feature which allows the developer to bind the data to a particular model. This is a very powerful feature since now the framework can correctly populate the model from the form values which can be persisted, updated based on the required action. In this article we will demonstrate how to use model binders to populate simple objects as well as hierarchical objects.

Accessing a Web Service Using Sys.Net.Webrequest ASP.NET

-----
No votes

Jan 16th 2010

Accessing a Web Service Using Sys.Net.Webrequest

In this article we are going to see how to access a web service from Sys.Net.WebRequest which finds the country by IP address.

Looking Ahead to ASP.NET 4.0 ASP.NET

-----
No votes

Dec 30th 2009

Looking Ahead to ASP.NET 4.0

When Visual Studio 2010 and .NET 4 arrive next year, ASP.NET developers will have two mature frameworks for building Web applications: ASP.NET Web Forms and ASP.NET MVC. This article highlights some of the important new features for these two frameworks.

Guidelines for consistent exception handling ASP.NET

-----
No votes

Dec 29th 2009

Guidelines for consistent exception handling

Exception handling is also a major part of an application design and we should give it the necessary thinking time that it deserves. In the following article, I hopefully try to put some light on good practices in throwing, catching and designing methods to deal with exceptions.

7 Tips for Loading JavaScript Rich Web 2.0-like Sites Significantly Faster ASP.NET

-----
No votes

Dec 28th 2009

7 Tips for Loading JavaScript Rich Web 2.0-like Sites Significantly Faster

Learn how to stub JavaCcript classes, load functions in classes on demand, render content from top to bottom, load JavaScript on demand, use Doloto to break scripts into small chunks. Techniques that are essential for Web 2.0 startups to succeed.

Databinding the GridView Without Using a Table ASP.NET

-----
No votes

Dec 27th 2009

Databinding the GridView Without Using a Table

If you want to let your users edit repeated rows of data, you can use the GridView -- even if your data isn't in a table. You need to do pick the right design for your data but you can enable all of the functionality of the GridView for data held in memory.

Sort the Items of an ASP.NET DropDownList using jQuery ASP.NET

-----
No votes

Dec 26th 2009

Sort the Items of an ASP.NET DropDownList using jQuery

This short article demonstrates how to sort the items of an ASP.NET DropDownList using jQuery

Exploring IIS with ASP.NET ASP.NET

-----
No votes

Dec 25th 2009

Exploring IIS with ASP.NET

This is an "All in One" article for IIS, to help beginners to know what IIS is, how to install IIS, how to deploy sites on IIS, creation of Application pool, web garden, etc.

Suppressing the Back Button: Just Say No ASP.NET

-----
No votes

Dec 24th 2009

Suppressing the Back Button: Just Say No

Peter deals with all the people who want to disable the Back button. First, he tells them to stop asking but (finally) breaks down and suggests a solution.

Implementing KeyBoard Shortcuts on an ASP.NET Hyperlink Control using jQuery ASP.NET

-----
No votes

Dec 23rd 2009

Implementing KeyBoard Shortcuts on an ASP.NET Hyperlink Control using jQuery

Popular Web apps like Windows Live Mail and Gmail feature keyboard shortcuts, which help you save time by executing common operations using the keyboard, without having to switch between the keyboard and mouse. This article shows you how to implement keyboard shortcuts on ASP.NET Hyperlink controls using jQuery.

Easily Extracting Links from a Snippet of HTML with HtmlAgilityPack ASP.NET

-----
No votes

Dec 22nd 2009

Easily Extracting Links from a Snippet of HTML with HtmlAgilityPack

The HtmlAgilityPack is a powerful library that makes screen scraping in asp.net a breeze. This is the second in a continuing series where I demonstrate a way for you to extract all the links from a snippet of HTML.

Creating a Free-Standing ASP.NET Pager Web Control ASP.NET

-----
No votes

Dec 21st 2009

Creating a Free-Standing ASP.NET Pager Web Control

Although there's decent Pager support in ASP.NET web controls the way paging works is inconsistent and not very generic. In this article I cover usage and implementation of a custom Pager control that is independent of other WebControls or DataSources on the page and provides an efficient mechanism for querying data as well as providing SEO friendly paging links.

Populating HTML Tables Using PageMethods/AJAX ASP.NET

-----
No votes

Dec 20th 2009

Populating HTML Tables Using PageMethods/AJAX

This article describes how to use ASP.NET AJAX PageMethods to fetch data from the database and populate HTML tables as DataGrids. CRUD with HTML table using PageMethods.

Dynamically Generate Complex Pages with the MultiView ASP.NET

-----
No votes

Dec 19th 2009

Dynamically Generate Complex Pages with the MultiView

The MultiView control allows you to swap sets of controls on and off the page. But the MultiView control also makes it easier for you to generate new page content and add it at run time.

Dynamic Data Retrieval ASP.NET

-----
No votes

Dec 18th 2009

Dynamic Data Retrieval

You can't always make all of your data retrieval decisions at design time -- sometimes you have to wait for the user to tell you what data to get. Peter shows you how to work with a DataSource to retrieve data dynamically at runtime.

Understanding Partial Views in ASP.NET MVC Application ASP.NET

-----
No votes

Dec 17th 2009

Understanding Partial Views in ASP.NET MVC Application

In ASP.NET WebForms, UserControls were used to break the application into smaller pieces. Each piece represented an important part of the application. In ASP.NET MVC application you can achieve the same effect using RenderPartial and RenderAction methods. In this article we are going to demonstrate how to use RenderPartial to construct and use partial views.

Using ASP.NET MVC and Ajax to Check Name Availability ASP.NET

-----
No votes

Dec 16th 2009

Using ASP.NET MVC and Ajax to Check Name Availability

This article demonstrates how to use ASP.NET MVC Ajax and JQuery to create a MVC User Control that checks the availability of a name. For example you may want to create a URL route that includes project names as parameters and you want to make sure those names are unique.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
(380 resources in 19 pages)
Advertisement

Free Magazine Subscriptions

Today's Pictures

Today's Video

Other Resources

Latest Download

Latest Icons