.NET news » Search results

Search results for query "asp" (244):

Classic ASP Integration with Facebook Websites Feature

Add Facebook Website Tools integration to your ASP based authentication
2010-07-16 05:28:00   Source: Classic ASP Integration with...   Tags: Internet

Managing View State in ASP.NET 4 Using the New ViewStateMode Property

The ASP.NET Web Forms model strives to encapsulate the lower level complexities involved in building a web application. Features like server-side event handlers, the page lifecycle, and view state effectively blur the line between the client and the server, simplify state management, and free the developer from worrying about HTTP, requests and responses, and similar matters. While these facets of the Web Forms model allow for rapid application development and make ASP.NET more accessible to developers with a web application background, their behavior can impact your website's behavior and performance.

View state is perhaps the most important - yet most misunderstood - feature of the Web Forms model. In a nutshell, view state is a technique that automatically persists programmatic changes to the Web controls on a page. By default, this state is serialized into a base-64 encoded string and included as a hidden <input> field in the Web Form. On postback, this state information is returned to the server as part of the POST request, at which point the server can deserialize it and reapply the persisted state to the controls in the control hierarchy. (If this last paragraph made crystal clear sense, great! If not, consider reading my article, Understanding ASP.NET View State, and Dave Reed's article, ViewStateMode in ASP.NET 4, before continuing.)

One potential issue with view state is that it can greatly bloat the size of your web pages. Each new version of ASP.NET seems to include new techniques for managing view state's footprint. ASP.NET 4 adds a new property to all Web controls, ViewStateMode, which allows developers to disable view state for a page by default and then selectively enable it for specific controls. This article reviews existing view state-related properties and then delves into the new ViewStateMode property.

2010-07-13 19:00:00   Source: Managing View State in ASP.NET 4...   Tags: Performance

Paging in any ASP.NET grid using SQL Server 2005

Implementing paging in any ASP.NET grid using SQL Server 2005.
2010-07-07 23:00:00   Source: Paging in any ASP.NET grid using SQL...   Tags: ASP.NET

Implementing Yahoo! Contact Reader Using Asp.NET

Implementing Yahoo! contact reader app using yahoo contact API and asp.net

Search Engine Optimization Enhancements in ASP.NET 4

Search engine optimization, or SEO, is the practice of improving a website's position in search engines' results using unpaid techniques. A better (higher) position in the search results will, in theory, lead to more click throughs, increasing the website's visibility and audience. There are a number of simple steps you can take on your website to improve your search engine ranking. A good first step is to download and run Microsoft's free Search Engine Optimization Toolkit. Point it at a remote website and the SEO Toolkit will crawl the links on the site and identify potential problems and offer suggestions on how to fix them.

ASP.NET 4 includes a handful of new methods, properties, and libraries to assist with search engine optimization, including ASP.NET Routing, permanent redirects, and the ability to programmatically specify values for certain <meta> tags. This article examines these enhancements and shows how they can be used for SEO purposes.

Json Data Visualizer using JQuery, JavaScript, Asp.net MVC 2.0

This article describes a Json data visualizer for popular web services like Google, Yahoo, Bing and Twitter using JQuery , JavaScript, and Asp.net MVC 2.0.

Developing and Unit Testing an ASP.NET MVC 2 Application

An introduction with AJAX, jQuery, JSON, MvcContrib and NUnit
2010-06-15 13:37:00   Source: Developing and Unit Testing an   Tags: Testing

ASTreeView - A Free TreeView Control for ASP.NET

A full functional treeview control for ASP.NET, including drag and drop, Ajax loading, context menu, dropdown treeview.

Database Export Wizard for ASP.net and SQL Server

With this article I would like to share a simple but useful little tool: ExportWizard, a Step Wizard for Database Export. It guides users through a few simple steps to choose a database object (table, view, or query), select columns, and export the data in any of the standard formats (CSV, HTML, XML, or SQL).
2010-05-20 10:55:00   Source: Database Export Wizard for ASP.net...   Tags: Database Examples

ASP.NET MVC Application In Action - DailyJournal

A simple visual task manager application using asp.net mvc and jquery.
2010-05-20 05:51:00   Source: ASP.NET MVC Application In Action -...   Tags: ASP.NET