Opening for Asp.net devleoper
Company: I Media
Requirement Summary:
- Atleast 3 yrs of relevant exp in web dev ASP.NET using c# & Sql server
- Experience in design & development of applications
Perspective Profile will be like:
- Should be a computer science graduate (B.E/B.Tech/MCA)
Location:
Chennai
Experience:
3 to 4 years
Contact details:
jobs@imedia.in

1 comment:
ASP.NET Interview Questions
Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension), the ISAPI filter aspnet_isapi.dll takes care of it by passing the request tothe actual worker process aspnet_wp.exe.
What’s the difference between Response.Write() andResponse.Output.Write()?
Response.Output.Write() allows you to write formatted output.
What methods are fired during the page load?
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.
When during the page processing cycle is ViewState available?
After the Init() and before the Page_Load(), or OnLoad() for a control.
What namespace does the Web page belong in the .NET Framework class hierarchy?
System.Web.UI.Page
Where do you store the information about the user’s locale?
System.Web.UI.Page.Culture
What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
CodeBehind is relevant to Visual Studio.NET only.
What’s a bubbled event?
When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The...
Fore more:
Check out the link http://www.prepareinterview.com/tips/questionASPdotNET.asp It has everything for interview tips and tricks.
Post a Comment