.NET news » ASP.NET ASP.NET Rss Feed

download
Integrate Search Into Your Site With ASP.NET

No matter how much content you provide or how good it is, if your customers can't find what they're looking for they'll go elsewhere. It's no wonder then that there are hundreds of search technology vendors. Which solution should you choose?

Windows Live Search crawls content on the Internet and also exposes search functionalities to developers through a Web service that allows the search to be scoped down to just your site. You can then render the results however you see fit.

Microsoft Office SharePoint Server 2007 is another good choice. It's a complete site-building and management solution that also provides robust search functionality...

16 Jul 2007, 19:00:00   Source: Integrate Search Into Your Site With ASP.NET   Tags: ASP.NET SharePoint
Creating a custom DataSourceControl with full design time support
An article on creating a DataSourceControl with full design time support
19 Jun 2007, 10:15:00   Source: Creating a custom DataSourceControl with full design time...   Tags: ASP.NET
Canceling Server Tasks with ASP.NET AJAX
A remote task is a piece of code that executes on the server in response to a client event. There are three possible ways for an ASP.NET AJAX client page to trigger a remote task: by causing a postback managed by an UpdatePanel control, by invoking a method directly on the application’s back end exposed through a local Web service, and by using a page method. Soon there will be a fourth method: a Windows Communication Foundation (WCF) service..
18 Jun 2007, 19:00:00   Source: Canceling Server Tasks with ASP.NET AJAX   Tags: Ajax ASP.NET
Extreme ASP.NET: Web Client Software Factory
The Web Service Software Factory is designed to provide guidance and enhanced tools for building Web services using ASMX or WCF.
18 Jun 2007, 19:00:00   Source: Extreme ASP.NET: Web Client Software Factory   Tags: ASP.NET Web Services
Google Password Strength API

Do you have a iGoogle Account? Well if you are like the rest of the world that use the internet you will have, which also means that you have seen the very cool (and useful) "Password strength" control.

The big secret is this is actually a public API from google, which you can pass a password and it will return the password strength from 1 (least secure) to 4 (most secure).

And here is the "BUT", there is no interface for the control and it is not openly advertised by Google...

18 Jun 2007, 14:39:00   Source: Google Password Strength API   Tags: ASP.NET
Creating Auto-Suggest Textbox Using ASP.NET 2.0 Client Callbacks
Auto-Completion is a very interesting feature that was primarily made popular by Google. I have already written a couple of articles that explain how to implement this feature. In this article, I will implement the auto-completion feature using ASP.NET 2.0 client callbacks.
15 Jun 2007, 10:52:00   Source: Creating Auto-Suggest Textbox Using ASP.NET 2.0 Client...   Tags: ASP.NET
Use of the PayPal payment system in ASP.NET
Those who create commercial sites are faced with the question, "How should it receive payments?" One of the most popular payment systems in the world is PayPal. This system is often chosen because it is reliable, simple to use and allows an account to be easily opened. To open an account, you need only have a credit card and/or an account in an American bank. One of shortcomings of the system is its severe security policy. However, practice evinces that if you follow the rules of the system carefully, then errors are very rare. The purpose of this article is to show how payments processing can be organized to support reliability and security. The article is also aimed at providing you with an example of the development of a simple online shop, in order to demonstrate interaction with the PayPal system. You can use the code in your applications to organize interaction with the PayPal system and to process payments.
14 Jun 2007, 15:16:00   Source: Use of the PayPal payment system in ASP.NET   Tags: ASP.NET Examples Internet
Building a User Control that Displays RSS Feeds Using a DataList and an XmlDataSource Control

In this article we will see just how easy it is to display XML data in an ASP.NET 2.0 page. In particular, we will build a User Control that will display the contents of an RSS feed. Once created, this User Control can be dragged onto the Design surface of any ASP.NET page in your project and configured to display the contents of a particular RSS feed by simply setting the control's Url property to the URL of the RSS feed.

Refresh Module
Most of you are familiar with the feature of all web-browsers that when you press the F5 button, the content of a page is refreshed. After the F5 button is pressed, the browser repeats the previous request to the page. Nothing wrong will actually happen when the previous request is made by the GET method. However, problems appear when the last request is made by the POST method. Let's consider an example where a user is transferring money to a shop to pay for some goods. Having completed this operation, the user refreshes the page and as a result the server code is executed once again with the same data. Thus, the user may accidentally pay twice..
29 May 2007, 10:28:00   Source: Refresh Module   Tags: ASP.NET
How-to safely keep a password field during postbacks and why it shouldn't be done
Think of this article as a beginners guide to think about design and security when solving problems.