By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
Windows Service applications are long-running applications that are ideal for use in server environments. The applications do not have a user interface or produce any visual output; it is instead used by other programs or the system to perform operations. Any user messages are typically written to the Windows Event Log. Services can be automatically started when the computer is booted. This makes services ideal for use on a server or whenever you need long-running functionality that does not interfere with other users who are working on the same computer. They do not require a logged in user in order to execute and can run under the context of any user including the system. Windows Services are controlled through the Service Control Manager where they can be stopped, paused, and started as needed.
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 1 Comment
Thread - is used to execute more than one program at a time.
process - executes single program
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
It’s the Attributes property, the Add function inside that property.
E.g.
btnSubmit.Attributes.Add(”onMouseOver”,”some Client Code();”)
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their event handlers, allowing the main Data Grid event handler to take care of its constituents. Suppose you want a certain ASP.NET function executed on Mouse Over over a certain button.
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
Code Behind is relevant to Visual Studio.NET only.
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
System.Web.UI.Page.Culture
By admin on Jan 8, 2007 in ASP.NET Interview Questions, Technical | 0 Comments
- Init() When the page is instantiated,
- Load() - when the page is loaded into server memory,
- PreRender () - the brief moment before the page is displayed to the user as HTML,
- Unload() - when page finishes loading.