|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Asp.Net Interview questions
hi all
Iam preparing for an interview i would like to get some questions on asp.net.(FAQ / interview questions) thanks in advance sriram Last edited by sriram s : July 28th, 2004 at 05:09 AM. Reason: spelling mistake |
|
#2
|
||||
|
||||
|
[Edit]
opps didn't get understand the question ![]() [/edit]
__________________
Viper_SB |
|
#3
|
|||
|
|||
|
Hi, Just wondering if ... Urgent
Looking at the questions, Got some done. Was wondering if you could send some of the answers. Thanks.
|
|
#5
|
|||
|
|||
|
Is there not a list....
Hi there,
Is there not a list of short answers? Any help would be appreciated. |
|
#6
|
||||
|
||||
|
Read his post he gave a link in it (yes I know he edited his post)
|
|
#7
|
|||
|
|||
|
Quote:
I looked it only gives question to ASP.NET and C#. I am looking for the quiz test. 1. Explain the differences between Server-side and Client-side code? 2. What type of code (server or client) is found in a Code-Behind class? If you remember. That would be great. |
|
#8
|
||||
|
||||
|
If you can provide me with a list of questions, I can provide you with the answers.
|
|
#9
|
|||
|
|||
|
Here are the questions.
Quote:
1. Explain the code behind wors and contrast that using the inline style. 2. Different types of HTML,Web and server controls (also how Server control validation controls work) 4. Difference btn user and server controls 4. How server form post-back works (perhaps ask about view state as well). 5. Can the action attribute of a server-side <form> tag be set to a value and if not how can you possibly pass data from a form page to a subsequent page. 6. What is the role of global.asax. 7. How would ASP and ASP.NET apps run at the same time on the same server? 8. What are good ADO.NET object(s) to replace the ADO Recordset object. Answers: 3. Server controls are built-in. User controls are created by the developer to allow for the reuse of controls that need specific functionality. 4. By default all pages in .NET post back to themselves. The view state keeps the users input updated on the page. 5. No, You have to use Server.Transfer to pass the data to another page. 6. Store global information about the application 8. There are alot...but the base once are SqlConnection, OleDbConnection, etc... In addition to the above some couple of basic questions, a couple of additional questions listed below. Good luck! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. Explain the differences between Server-side and Client-side code? 2. What type of code (server or client) is found in a Code-Behind class? 3. Should validation (did the user enter a real date) occur server-side or client-side? Why? 4. What does the "EnableViewState" property do? Why would I want it on or off? 5. What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other? 6. Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component 7. Let's say I have an existing application written using Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .NET 8. Can you explain the difference between an ADO.NET Dataset and an ADO Recordset? 9. Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines? 10. If I'm developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users? 11. What are ASP.NET Web Forms? How is this technology different than what is available though ASP (1.0-3.0)? 12. How does VB.NET/C# achieve polymorphism? 11. Can you explain what inheritance is and an example of when you might use it? 13. How would you implement inheritance using VB.NET/C#? 14. Whats an assembly 15. Describe the difference between inline and code behind - which is best in a 16. loosely coupled solution 17. Explain what a diffgram is, and a good use for one 18. Where would you use an iHTTPModule, and what are the limitations of any 19. approach you might take in implementing one 20. What are the disadvantages of viewstate/what are the benefits 21 Describe session handling in a webfarm, how does it work and what are the > limits 22. How would you get ASP.NET running in Apache web servers - why would you even do this? 23. Whats MSIL, and why should my developers need an appreciation of it if at all? 24. In what order do the events of an ASPX page execute. As a developer is it important to undertsand these events? 25. Which method do you invoke on the DataAdapter control to load your generated dataset with data? 26. Can you edit data in the Repeater control? 27. Which template must you provide, in order to display data in a Repeater control? 28. How can you provide an alternating color scheme in a Repeater control? 29. What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control? 30. What base class do all Web Forms inherit from? 31. What method do you use to explicitly kill a user s session? 32 How do you turn off cookies for one page in your site? 33. Which two properties are on every validation control? 34. What tags do you need to add within the asp:datagrid tags to bind columns manually? 35. How do you create a permanent cookie? 36. What tag do you use to add a hyperlink column to the DataGrid? 37. What is the standard you use to wrap up a call to a Web service 38. Which method do you use to redirect the user to another page without performing a round trip to the client? 39. What is the transport protocol you use to call a Web service SOAP 40. True or False: A Web service can only be written in .NET 41. What does WSDL stand for? 42. What property do you have to set to tell the grid which page to go to when using the Pager object? 43. Where on the Internet would you look for Web services? 44. What tags do you need to add within the asp:datagrid tags to bind columns manually. 45. Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box? 46. How is a property designated as read-only? 47. Which control would you use if you needed to make sure the values in two different controls matched? 48. True or False: To test a Web service you must create a windows application or Web application to consume this service? 49. How many classes can a single .NET DLL contain? ~~~~~~~~~~~~~~~~~~~~ 1. Server-side code runs on the server, Client-side code runs on the client. 2. Server 3. Client...so the user doesn't have to wait for the page to be posted to the server and then returned. 4. Enables the ability to maintain the state of the page and all data within it. 5. Server.Trasfer allows you to pass variables to another page. Server.Redirect just redirects the user to another page. 6. When there is no need for a UI to perform the required task. 8. By default Datasets are disconnected. 9. Any variables that need to be set for the application or session objects. Example: For the path of a image directory Application("ImagePath") = "C:\Images\" 13. VB.NET use the Implements keyword to inherit from another class or interface. C# use : to inherit example Code: VB.NET class myClass Inherits baseClass End class C# class myClass : baseClass 14. An assembly is the collection of all information required by the runtime to execute your application. 15. Inline is mixed with the html, code-behind is separated. Use code-behind. 17. An XML format. Can be used by other platforms so send and receive data to a .NET application 23. Microsoft Intermediate Language 24. You mean the steps of the page lifetime? or that .NET is event driven? 25. Fill method 26. Yes 27. ItemTemplate 28. AlternatingItemTemplate 29. Set the datasource property and call the DataBind method 30. Page...but all .NET objects inherit form the Object Base Class. 31. Session.Contents.Remove 32. You can't (not that I am aware of...since there is no Page level directive to do this) 34. Set AutoGenerateColumns Property to false on the datagrid tag 36. <asp:HyperLinkColumn> 39. SOAP is preferred protocol 40. False 41. Web Services Description Language 42. CurrentPageIndex 43. www.uddi.org 45. DataTextField 46. Only a Get method...no, Set method 47. CompareValidator 48. False, the webservice comes with a test page and it provides HTTP-GET method to test. 49. Many |
|
#10
|
||||
|
||||
|
Most (if not all) of those questions are answered in the ASP.NET interview questions posted in the .NET area.
I provided a link to it above. |
|
#11
|
||||
|
||||
|
My personal opinion is...If you can't answer at least 1/2 of those questions, then you shouldn't be applying for a .NET job.
|
|
#12
|
|||
|
|||
|
Thank you
Thank you for your help and your time. I am just trying to learn from these questions.
|
|
#13
|
|||
|
|||
|
http://blog.daveranck.com/archive/2005/01/20/355.aspx
http://blogs.crsw.com/mark/articles/254.aspx http://www.dotnetspider.com/technology/exams/ExamsCategory.aspx?CategoryId=3 http://techinterviews.com/ http://www.certfaq.com/employment/e011.html |
![]() |
| Viewing: ASP Free Forums > Other > ASP Free Lounge > Asp.Net Interview questions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|