|
|
|
|
|
| | Total Hits: 126 | Today: 0 | Author: Puran Mehra | Rating:  |
| |  The ASP.NET page framework supports an automatic way to associate page events and methods. If the AutoEventWireup attribute of the Page directive is set to true, the page framework calls page events automatically, specifically the Page_Init and Page_Load methods. In that case, no explicit Handles clause or delegate is needed.... |
| | Total Hits: 76 | Today: 0 | Author: Hans Candra | Rating:  |
| |  HTTP cookies, or more commonly referred to as Web cookies, tracking cookies or just cookies, are parcels of text sent by a server to a web client (usually a browser) and then sent back unchanged by the client each time it accesses that server. HTTP cookies are used for authenticating, session tracking (state maintenance), and maintaining specific information about users, such as site preferences or the contents of their electronic shopping carts.... |
| | Total Hits: 90 | Today: 0 | Author: Alessandro Gallo | Rating:  |
| |  JavaScript developers are acquainted with the event model provided by the DOM. You can program against the DOM elements of a web page by hooking up their events and executing code in event handlers. For example, a button element can raise a click event when it's clicked by the user. The window object raises a load event when the page is loaded and an unload event when the user navigates away from the page.... |
| | Total Hits: 7 | Today: 0 | Author: Shaun Eutsey | Rating:  |
| |  I was confronted a while back with an interesting problem that I was asked to solve. I do say problem; I am not afraid of that word as many people are. I look at problems as opportunities; opportunities to find solution and to grow, both personally and professionally.... |
| | Total Hits: 26 | Today: 0 | Author: Puran Mehra | Rating:  |
| |  The XmlDataDocument events are useful when your application needs to notify you when changes are being made to an XmlDataDocument object. XmlDocument defines XmlDataDocument events (see Table 9-6).... |
| | Total Hits: 74 | Today: 0 | Author: programming.top54u.com | Rating:  |
| |  The Command method of ASP.Net Button control enables you to handle the click event of multiple button controls with a single command event handler. The clicks on ASP.Net Button control can be handled by command event handler using the command method that will execute the specified action based on the values of CommandName and CommandArgument properties. In the command event handler code you can create the conditional sets of server side code that will perform the action according the specified C... |
| | Total Hits: 35 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  Provides event-related utility methods that register routed events for class owners and add class handlers.... |
| | Total Hits: 153 | Today: 0 | Author: Bertrand Le Roy | Rating:  |
| |  One common drawback of Ajax applications is the loss of the browser's back button. This article by Bertrand Le Roy shows how to restore it using ASP.NET 3.5 Extensions Preview and server code.... |
| | Total Hits: 93 | Today: 0 | Author: Microsoft | Rating:  |
| |  This article provides an introduction to the ASP.NET HTTP modules and HTTP handlers.
HTTP modules and HTTP handlers are an integral part of the ASP.NET architecture. While a request is being processed, each request is processed by multiple HTTP modules (for example, the authentication module and the session module) and is then processed by a single HTTP handler. After the handler has processed the request, the request flows back through the HTTP modules.... |
| | Total Hits: 284 | Today: 0 | Author: Neeraj Saluja. | Rating:  |
| |  Tracking anything in dates is one of the common requirement now a days. Tracking events, project milestones, tracking history, tracking schedule etc etc. It was quite a complex job until the wonderful Calendar Control of ASP.NET 2.0. It is one of the Standard Server Side Web Control of ASP.NET 2.0, which when used properly can help in accomplishing the varoius requirements, tracking being one of them. Here we are going to see how can this Calendar control can help us in tracking the events.... |
| | Total Hits: 74 | Today: 0 | Author: Peter van Ooijen | Rating:  |
| |  Building a web application has become a snap using Visual Studio.NET. You create an aspx webform, drag some controls from the toolbar and then customize the controls in the properties window. That window has two tabs, one for the properties themselves and one for events. Properties have straight values like a color or size, but events stand for real code. This code is written in the programming language chosen for the project. I will choose C# to explore this world of .NET events.... |
| | Total Hits: 72 | Today: 0 | Author: Scott Stewart | Rating:  |
| |  Subscribing to events of objects instantiated via remoting can be a tricky business. However, it is possible to build solid event publish/subscribe applications while using remoting simply by applying a few extra strategies then might not seem immediately obvious. Throughout the document, I will refer to the process that exposes the object for remoting as server and the process that instantiates an instance (local proxy) of a remote object as client. However, all of these processes may in deed t... |
| | Total Hits: 187 | Today: 0 | Author: spraman. | Rating:  |
| |  Many a times it's required to disable the button at client side before firing the server side event. One best example is while processing credit card payments, the button has to be disabled until the card details are processed which is a time consuming job. This may sometimes seem to be unresponsive, so if the user clicks the button once again the risk is that payment may get processed twice.
So to avoid this it's a best practise to disable the button at client side once the user clicks t... |
| | Total Hits: 351 | Today: 0 | Author: Bilal Haidar | Rating:  |
| |  In this article Bilal Haidar demonstrates how to handle the close event of the browser on the client side and execute a server side method on the server code.... |
| | Total Hits: 197 | Today: 0 | Author: Andrew Flick and Anthony Lombardo | Rating:  |
| |  One of quickest ways to enhance the look and feel of a page is to add hot tracking to elements. Hot tracking is usually used to alter the appearance of an item as the mouse is moved across it. Although it sounds like this would require complex JavaScript mouse event handlers, in actuality we can provide this behavior without writing a single line of JavaScript... |
| | Total Hits: 176 | Today: 0 | Author: Kyle Roche | Rating:  |
| |  There are many interface design strategies for an ASP.NET application. Among them is the consideration to use web user controls to comprise the interface. A web user control is a functional unit of server and HTML controls that can act independently of other controls or user controls on the web form. Because the server controls and HTML controls that make up the user control are contained within the control’s page, the user control will act as a single server control when added to the web form. ... |
| | Total Hits: 300 | Today: 0 | Author: Steve Stchur | Rating:  |
| |  A few months ago, I was asked by my company to post a list of frequently asked questions about our software on our Support Site. I figured this would be a cinch and said "sure, send me the questions and I'll take care of it." Little did I know that we had so many questions in our FAQ list, but I figured "ok, this is just more tedious than anything -- still not terribly difficult." I set about trying to come up with a way to display the questions in a neatly readable fashion, but I was disappoint... |
| | Total Hits: 2167 | Today: 0 | Author: Faraz | Rating:  |
| |  In this article I will try to explain you the technique of using Global.asax Configuration file events in your application. Often you need to logically group together the ASP.Net pages. For example you are developing an e-commerce website and you want to group your pages in such a way that the visitors can browse through your catalog, add items, remove items and check out while you are maintaining the information about their activity. To keep checks on activities in these kinds of situation you ... |
| | Total Hits: 668 | Today: 0 | Author: RohitDighe | Rating:  |
| |  After sign out from site if browsers back button is clicked it shows the previous page, though user is sign out from the site, to avoid this disabling of cache is done.When i was doing coding for sign in and sign out for my clients application, i found that after signing out from the application i transfered the control to login page e.g. login.aspx. At this point if i click the Back button of Browser it shows the content of previous page user was viewing.As there was important data displayed on... |
| | Total Hits: 309 | Today: 0 | Author: NiramalMukti Software Solutions | Rating:  |
| |  This project will help you to simplify your search with in the documents. This project is reference of “Desktop Search Application: Part 1 By Dan Letecky.”. But this is web project and there are no controls involved... |
|
|
|
|
|
|
|
|
|
|
|
|
|