Mark Wagner's .NET C# Cogitation

.NET Architect and Developer - Simple Thoughts from a Simple Mind

  Home :: Contact :: Syndication  :: Login
  90 Posts :: 59 Articles :: 1548 Comments :: 186 Trackbacks

News

You can download this .TEXT blog skin free. Download Cogitation Blue skin.
Updated May 6, 2004

My Sites
- New SharePoint Blog
- My Developer blog
- My Personal blog
ASP.NET Web Hosting
I host my site here. The best value for quality hosting. Read my opinion here. If you decide to join, please use this link. Thank you very much.


Legal
Any and all code, software, examples, suggestions and anything else on this web site is available for you to use at your own risk. No warranty is express or implied.
Views and Opinions
Mark Wagner works for Microsoft in the Consulting Services division and covers the West Region. The views and opinions expressed on this web site are not necessarily the views or opinions of his employer.

Article Categories

Archives

Post Categories

.: Architecture Links :.

.: Developer Links :.

.Text and RSS Links

Blog Roll - Top Guns

Developer: .NET Security

Developer: C# Team

Developer: Flash

Developer: JavaScript

Developer: Pocket PC

Personal: Aviation

Personal: Favorites

ASP.NET Interview Questions

This is a list of questions I have gathered and created over a period of time from my experience, many of which I felt where incomplete or simply wrong.  I have finally taken the time to go through each question and correct them to the best of my ability.  However, please feel free to post feedback to challenge, improve, or suggest new questions.  I want to thank those of you that have contributed quality questions and corrections thus far.

There are some questions in this list that I do not consider to be good questions for an interview.  However, they do exist on other lists available on the Internet so I felt compelled to keep them here for easy access.

  1. 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.
     
  2. What’s the difference between Response.Write() andResponse.Output.Write()?
    Response.Output.Write() allows you to write formatted output. 
     
  3. 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. 
     
  4. When during the page processing cycle is ViewState available?
    After the Init() and before the Page_Load(), or OnLoad() for a control. 
     
  5. What namespace does the Web page belong in the .NET Framework class hierarchy?
    System.Web.UI.Page 
     
  6. Where do you store the information about the user’s locale?
    System.Web.UI.Page.Culture 
     
  7. What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
    CodeBehind is relevant to Visual Studio.NET only. 
     
  8. 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 controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents. 
     
  9. Suppose you want a certain ASP.NET function executed on MouseOver for a certain button.  Where do you add an event handler?
    Add an OnMouseOver attribute to the button.  Example: btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();"); 
     
  10. What data types do the RangeValidator control support?
    Integer, String, and Date. 
     
  11. Explain the differences between Server-side and Client-side code?
    Server-side code executes on the server.  Client-side code executes in the client's browser. 
     
  12. What type of code (server or client) is found in a Code-Behind class?
    The answer is server-side code since code-behind is executed on the server.  However, during the code-behind's execution on the server, it can render client-side code such as JavaScript to be processed in the clients browser.  But just to be clear, code-behind executes on the server, thus making it server-side code. 
     
  13. Should user input data validation occur server-side or client-side?  Why?
    All user input data validation should occur on the server at a minimum.  Additionally, client-side validation can be performed where deemed appropriate and feasable to provide a richer, more responsive experience for the user. 
     
  14. What is the difference between Server.Transfer and Response.Redirect?  Why would I choose one over the other?
    Server.Transfer transfers page processing from one page directly to the next page without making a round-trip back to the client's browser.  This provides a faster response with a little less overhead on the server.  Server.Transfer does not update the clients url history list or current url.  Response.Redirect is used to redirect the user's browser to another page or site.  This performas a trip back to the client where the client's browser is redirected to the new page.  The user's browser history list is updated to reflect the new address. 
     
  15. Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?
    Valid answers are:
    · 
    A DataSet can represent an entire relational database in memory, complete with tables, relations, and views.
    ·  A DataSet is designed to work without any continuing connection to the original data source.
    ·  Data in a DataSet is bulk-loaded, rather than being loaded on demand.
    ·  There's no concept of cursor types in a DataSet.
    ·  DataSets have no current record pointer You can use For Each loops to move through the data.
    ·  You can store many edits in a DataSet, and write them to the original data source in a single operation.
    ·  Though the DataSet is universal, other objects in ADO.NET come in different versions for different data sources. 
     
  16. What is the Global.asax used for?
    The Global.asax (including the Global.asax.cs file) is used to implement application and session level events. 
     
  17. What are the Application_Start and Session_Start subroutines used for?
    This is where you can set the specific variables for the Application and Session objects. 
     
  18. Can you explain what inheritance is and an example of when you might use it?
    When you want to inherit (use the functionality of) another class.  Example: With a base class named Employee, a Manager class could be derived from the Employee base class. 
     
  19. Whats an assembly?
    Assemblies are the building blocks of the .NET framework. Overview of assemblies from MSDN 
     
  20. Describe the difference between inline and code behind.
    Inline code written along side the html in a page. Code-behind is code written in a separate file and referenced by the .aspx page. 
     
  21. Explain what a diffgram is, and a good use for one?
    The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML.  A good use is reading database data to an XML file to be sent to a Web Service. 
     
  22. Whats MSIL, and why should my developers need an appreciation of it if at all?
    MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL.  MSIL also allows the .NET Framework to JIT compile the assembly on the installed computer. 
     
  23. Which method do you invoke on the DataAdapter control to load your generated dataset with data?
    The Fill() method. 
     
  24. Can you edit data in the Repeater control?
    No, it just reads the information from its data source. 
     
  25. Which template must you provide, in order to display data in a Repeater control?
    ItemTemplate. 
     
  26. How can you provide an alternating color scheme in a Repeater control?
    Use the AlternatingItemTemplate. 
     
  27. What property must you set, and what method must you call in your code, in order to bind the data from a data source to the Repeater control?
    You must set the DataSource property and call the DataBind method. 
     
  28. What base class do all Web Forms inherit from?
    The Page class. 
     
  29. Name two properties common in every validation control?
    ControlToValidate property and Text property. 
     
  30. 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?
    DataTextField property. 
     
  31. Which control would you use if you needed to make sure the values in two different controls matched?
    CompareValidator control. 
     
  32. How many classes can a single .NET DLL contain?
    It can contain many classes.
     

Web Service Questions

  1. What is the transport protocol you use to call a Web service?
    SOAP (Simple Object Access Protocol) is the preferred protocol. 
     
  2. True or False: A Web service can only be written in .NET?
    False 
     
  3. What does WSDL stand for?
    Web Services Description Language. 
     
  4. Where on the Internet would you look for Web services?
    http://www.uddi.org 
     
  5. True or False: To test a Web service you must create a Windows application or Web application to consume this service?
    False, the web service comes with a test page and it provides HTTP-GET method to test.
     

State Management Questions

  1. What is ViewState?
    ViewState allows the state of objects (serializable) to be stored in a hidden field on the page.  ViewState is transported to the client and back to the server, and is not stored on the server or any other external source.  ViewState is used the retain the state of server-side objects between postabacks. 
     
  2. What is the lifespan for items stored in ViewState?
    Item stored in ViewState exist for the life of the current page.  This includes postbacks (to the same page). 
     
  3. What does the "EnableViewState" property do?  Why would I want it on or off?
    It allows the page to save the users input on a form across postbacks.  It saves the server-side values for a given control into ViewState, which is stored as a hidden value on the page before sending the page to the clients browser.  When the page is posted back to the server the server control is recreated with the state stored in viewstate. 
     
  4. What are the different types of Session state management options available with ASP.NET?
    ASP.NET provides In-Process and Out-of-Process state management.  In-Process stores the session in memory on the web server.  This requires the a "sticky-server" (or no load-balancing) so that the user is always reconnected to the same web server.  Out-of-Process Session state management stores data in an external data source.  The external data source may be either a SQL Server or a State Server service.  Out-of-Process state management requires that all objects stored in session are serializable.
posted on Tuesday, March 16, 2004 8:14 AM

Feedback

# re: Interview Questions: ASP.NET 6/1/2004 5:00 AM pinak
hey can anyone gimme some common basic questions on .net which can b expected in interview. Plz consider that i'm just beginer in .net. You can mail me at
pinak222@yahoo.com. I'll b really thankfull to u ...
bye


# re: Interview Questions: ASP.NET 6/25/2004 11:08 PM thomas
hello friend

thankx for you questions.
the questions seems to be little bit tough, so if you have prilim questions for a beginner, could you please send it to me.


with prayers..........................................thomas
thomasjames_code@yahoo.co.in

# re: Interview Questions: ASP.NET 7/1/2004 12:49 AM doubt
11. What type of code (server or client) is found in a Code-Behind class? Server-side code.


we can write client side code in code-behind calss like
button1.Attributes.Add("onMouseOver", "window.open('webform1.aspx')")

pls help me

# re: Interview Questions: ASP.NET 7/1/2004 12:44 PM Mark Wagner
You are correct. You can write dynamically created client-side code in the code-behind class just as you have shown in your example. I understand your question and believe you have a good point. However, I would argue the code-behind class should still be considered "server-side" code since that is where it is executing. Client-side code does not execute in the code-behind, it is simply text or data, not really code and is treated as such in the code-behind.

Your (excellent) example demonstrates the power of ASP in that a developer can dynamically create HTML, XML, or even Javascript in the code-behind. As you have pointed out, this dynamically generated code would execute on the client-side.

In short, you are correct in your assessment and appear to be able to intelligently answer this question should you encounter it in an interview. Great question!

# re: Interview Questions: ASP.NET 7/3/2004 10:36 AM Yasser
Hi,

This is in response to Question 12, validation should occur on client side and server side both. Client side should happen to avoid server round trip, but it's easily possible to by-pass client side validation. Say if someone has turned of javascript in her browser or if the browser is not supporting javascript? In that scenario client side validation will not work. Hence if the validation is also done on server than such scenario can be avoided. The rule is whether validation occurs on client or not, but it should always occur on server.

# re: Interview Questions: ASP.NET 7/5/2004 10:26 PM Vivek Kumbhojkar
This article is realyy good for beginners..

Excellent article


Vivek

# re: Interview Questions: ASP.NET 7/16/2004 11:00 PM vishal wadhawan
This is a real good stuff.I liked it very much and i'll refer it to every fresher.

# re: Interview Questions: ASP.NET 7/20/2004 3:02 AM Rohit Kalia
This is in response to Question 14 : What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

server.transfer simply transfer execution to another page. this doesn't require any information to be sent to the browser== it all occurs on the server without the user's knowledge.
The response.redirect method sends http information to the browser instructing it to go to another page.

rohitkalya@yahoo.com

# re: Interview Questions: ASP.NET 7/29/2004 11:31 AM Mukti ranjan
It's very very useful for interview purpose. thanks for this good did.

# re: Interview Questions: ASP.NET 7/29/2004 11:07 PM vishal
hi all
I,m working in NIC .it's a very good question for all freshers who really want about the .net

# re: Interview Questions: ASP.NET 8/5/2004 12:01 AM sandy
hi all,
i think these questions r very much useful for freshers,but it will be more useful if u provide more questions on this topic
bye to all
sandy

# re: Interview Questions: ASP.NET 8/5/2004 9:05 PM Akhil Bhandari
Good Stuff!!

Flood it with more....

# re: Interview Questions: ASP.NET 8/8/2004 11:04 PM Fahad Khalil
Hi

About question 12... the validation on client side. Yes, one should perform the validation on client side... but as they say, *never trust your client, specially thin*.

So always perform validation on client side, try to save atleast one trip. If client is not messing with the HTML, then he is doing a favor on himself. If he is messing, let him waste his own band width.

To check whether all the validors on a page validate into *true*, before performing business, you better should do...

Page.IsValid

or if you want to perform validation for a particular validator, just do...

FieldValidator.IsValid.


Hope this helps :)


mEEEEEEEEEEEEEEE!!!!!!!

# re: Interview Questions: ASP.NET 8/11/2004 12:04 PM swapna
could any one pls send me imp questions in .Net,ASP.Net,Sqlserver 2000
mail me on jara_gala@yahoo.com
thanks in advance

# re: Interview Questions: ASP.NET 8/16/2004 2:43 AM pradeep
The Questions are really great.

Thank you.

# re: Interview Questions: ASP.NET 8/16/2004 4:56 AM suresh
Question are good enough for a fresher.

# re: Interview Questions: ASP.NET 8/18/2004 9:36 AM Sergey
Most questions are good, but asking about property names or tag names has no benefit whatsoever. Why would I memorize them if I have intellisence and MSDN library? Rather concentrate on questions about general programming knowledge and understanding of ASP.NET concepts such as request/response, processing pipelines and code-behind.

# re: Interview Questions: ASP.NET 8/18/2004 10:08 AM Mark Wagner
I agree Sergey.

# re: Interview Questions: ASP.NET 8/19/2004 12:28 PM RKA
Good for Interview point of view, but require more additional question in practicle.

# re: Interview Questions: ASP.NET 9/2/2004 11:16 PM sarvjeet
Thats really nice

# re: Interview Questions: ASP.NET 9/6/2004 2:54 AM Senthil Kumaran
Yeah nice questions u have it here. But still towards OOPS concept and their implementation will do better

mail me @ senthilkumaranz@rediffmail.com I do have some questions.........

Ever Loving,
R. Senthil Kumaran

# re: Interview Questions: ASP.NET 9/7/2004 3:52 AM Ravi Nagaraj
Its indeed a good article. Please if you find any interview questions for Beginner in ASP.net please mail it to evanirn@yahoo.com
Thanks
Ravi Nagaraj

# re: Interview Questions: ASP.NET 9/7/2004 5:38 AM Ravi
Its real good Information.
Thanks


# re: Interview Questions: ASP.NET 9/17/2004 10:20 AM Niveditha
Hi

The questions and answers in this article are quite useful
in an interview.
But i am not satisfied by the answer to
Q No.14. What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

My answer will be
The Response .Redirect () method can be used to redirect the browser to specified url, pointing to any resource and may contain query strings and causes an extra roundtrip

Server.Transfer() performs server side redirection of the page avoiding extra roundtrip.

Server.Transfer() is preferred over Response.Redirect to avoid rountrip but the limitation is the aspx page should reside on same web server.


# re: Interview Questions: ASP.NET 9/27/2004 12:52 PM Rakesh M Naithani
The Questions are really helpful for all of us and design as if we are at test.

Thank you.


# re: Interview Questions: ASP.NET 10/2/2004 9:00 PM anil
sir very good

# re: Interview Questions: ASP.NET 10/4/2004 8:57 PM SS
Very useful article.Thanks for spending the time to come up with such an article.Would really appreciate more questions regding general asp.net & OOP concepts...

# re: Interview Questions: ASP.NET 10/5/2004 1:33 PM jag
tuelly remarkable

# ASP.NET Interview Q&A 10/8/2004 9:25 AM roux mohammed
1. 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.
2. What’s the difference between Response.Write() andResponse.Output.Write()?
The later one allows you to write formattedoutput.
3. What methods are fired during the page load?
Init() - when the pageis instantiated
Load() - when the page is loaded into server memory
PreRender() - the brief moment before the page is displayed to the user asHTML,
Unload() - when page finishes loading.
4. Where does the Web page belong in the .NET Framework class hierarchy?
System.Web.UI.Page
5. Where do you store the information about the user’s locale?
System.Web.UI.Page.Culture
6. What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
CodeBehind is relevant to Visual Studio.NET only.
7. What’s a bubbled event?
When you have a complex control, like DataGrid, writing an event processing

# re: Interview Questions: ASP.NET 10/8/2004 10:47 AM Mark Wagner
Roux,

Excellent questions. I will "eventually" add them to the main list above.

Thanks!

# re: Interview Questions: ASP.NET 10/10/2004 6:33 PM santhosh chary
hi
iam fresher, addemding interviews.any one can send me faqs,maninly on oops concept,web services/remoting,security and windows services

# re: Interview Questions: ASP.NET 10/14/2004 1:29 AM Erik Lane
Great stuff along with your others too.

# re: Interview Questions: ASP.NET 10/15/2004 5:22 AM satyan
Thanks ,

Help every one to reach their Dream Job .



# re: Interview Questions: ASP.NET 10/21/2004 11:36 PM Horatiu Cristea
Sergey,
you know there is a point in asking about proprety names and tag names :)
knowing those answers, could prove the interviewed person that he has worked with that stuff, not just theoreticaly knowledge. For example what is the difference between visibility and display styles for a html tag?

but what iritates me at intervies and tests is that there are companies that give you as test a small project to do. This has no relevance in my point of view. instead i prefer to test the coding skill on paper. i usualy ask the person to write me on paper a snippet of code of 5-10 lines of code.

# re: Interview Questions: ASP.NET 11/7/2004 11:13 PM mouli
very good

# re: Interview Questions: ASP.NET 11/17/2004 3:47 AM Sharad
Hi I am Working in Hanu Software Systems . It will be
Good If u also Provide all the quetions through topic wise

# re: Interview Questions: ASP.NET 11/17/2004 3:47 AM Sharad
Hi I am Working in Hanu Software Systems . It will be
Good If u also Provide all the quetions through topic wise

# re: Interview Questions: ASP.NET 11/18/2004 10:30 PM arati
its very nice to have such a website, Its good if u provide topicwise questions

# re: Interview Questions: ASP.NET 11/22/2004 10:48 PM Senthilkumar Thirukkami
Hi,

Questions listed in the articles sounds good. I am adding more to the above mentioned list. As many opted for some basics in .NET.

1) What is CLS (Common Language Specificaiton)?
It provides the set of specificaiton which has to be adhered by any new language writer / Compiler writer for .NET Framework. This ensures Interoperability. For example: Within a ASP.NET application written in C#.NET language, we can refer to any DLL written in any other language supported by .NET Framework. As of now .NET Supports around 32 languages.


2) What is CTS (Common Type System)?
It defines about how Objects should be declard, defined and used within .NET. CLS is the subset of CTS.

3) What is Boxing and UnBoxing?
Boxing is implicit conversion of ValueTypes to Reference Types (Object) .
UnBoxing is explicit conversion of Reference Types (Object) to its equivalent ValueTypes. It requires type-casting.

4) What is the difference between Value Types and Reference Types?
Value Types uses Stack to store the data where as the later uses the Heap to store the data.

5) What are the different types of assemblies available and their purpose?
Private, Public/shared and Satellite Assemblies.

Private Assemblies : Assembly used within an application is known as private assemblies

Public/shared Assemblies : Assembly which can be shared across applicaiton is known as shared assemblies. Strong Name has to be created to create a shared assembly. This can be done using SN.EXE. The same has to be registered using GACUtil.exe (Global Assembly Cache).

Satellite Assemblies : These assemblies contain resource files pertaining to a locale (Culture+Language). These assemblies are used in deploying an Gloabl applicaiton for different languages.

6) Is String is Value Type or Reference Type in C#?
String is an object (Reference Type).

More to come....

Thanks & Regards,
Senthilkumar.Thirukkami
senthil_kumart@yahoo.com


# re: Interview Questions: ASP.NET 11/26/2004 3:29 AM Omendra
Hi all.This is very good u provide guide like this.
Omendra

# re: Interview Questions: ASP.NET 11/27/2004 12:08 AM sivamohanreddy
Please give me description about
the difference between Codebehind and Src

this is very urgent


# re: Interview Questions: ASP.NET 11/29/2004 6:06 AM Venkatajalapathi
Good Job, this questions is very useful for beginners.


# re: Interview Questions: ASP.NET 12/3/2004 10:19 PM Narendra Singh
This is nice to have such questions on net. Its really
helpful.

# re: Interview Questions: ASP.NET 12/5/2004 4:47 AM Niks
Good set of questions.

I feel the difference between "src" and "code behind" tag can be better explained from the deployment perspective.
When "code behind" tag is used, ASP.NET expects the precompiled dll on the server. When "src" tag is used the code behind is converted to MSIL just in time. Then it does not expect the pre-compiled DLL. So directly the .cs (if C# is used) can be deployed on the server.
For further details Microsift msdn help - Knowledge base can be looked.

# re: Interview Questions: ASP.NET 12/16/2004 3:02 AM binay
hello can anyone provide me some common basic questions on .net which can b expected in interview.
consider me as a beginner. pls do mail me with Ans.
at sharmabinay@indiatimes.com.
I'll b really thankfull to u ...
bye




# re: Interview Questions: ASP.NET 12/16/2004 3:29 AM hemant sudehely
this is too much helpful, so thaks for this and continue and if i can contribute than how can.

# re: Interview Questions: ASP.NET 12/16/2004 7:06 AM Sahana
Can anyone give interview quesions about OOP and c#

# re: Interview Questions: ASP.NET 12/16/2004 10:08 AM Shriram Nimbolkar
These are really very good Q & A and those helped me a lot!

# re: Interview Questions: ASP.NET 12/18/2004 6:01 AM R J Singh

Thanks for you questions.

Can u send me some more quetion on asp.net and C#.

My Email id is ramjanm@gmail.com

Regrads & Thanks

R J Singh



# re: Interview Questions: ASP.NET 12/20/2004 1:34 AM Subhajit Biswas
This is excellent !! would certainely expect something more..

subhajit.biswas@gmail.com

# re: Interview Questions: ASP.NET 12/20/2004 5:17 AM P.K.MANIKANDAN
Thanks for you questions.

Can u send me some more quetion on asp.net and C#.

My Email id is pk_manikandan@rediffmail.com

Regrads & Thanks

P.K.MANIKANDAN



# re: Interview Questions: ASP.NET 3/11/2005 12:21 PM Developer in Seattle
Someone posts a great article, and the feedback thread is littered with requests for more help. Are you guys idiots? Why should anyone take time out of their day to send you anything?

# re: Interview Questions: ASP.NET 3/14/2005 2:00 AM deepak
these question r not enough for interview plz add more question and mail me accesdipak@rediffmail.com

# re: Interview Questions: ASP.NET 3/14/2005 2:00 AM deepak
these question r not enough for interview plz add more question and mail me accesdipak@rediffmail.com

# re: Interview Questions: ASP.NET 3/17/2005 11:27 PM Giribabu.T
Dear friends,
U can send Interview model papers on this, If u have any. If u do so, i am very thankfull to u. If it is possible to u u can mail me: giri_chinna27@yahoo.co.in

# re: Interview Questions: ASP.NET 3/21/2005 12:10 AM s kotteeswaran
sir,
please give some Asp.Net Interview Questions
it is usefull for me.plz send my url.
Thank you
s.kotteeswaran

# New questions from today! 3/21/2005 7:17 PM Bork, James Bork.
1. What is the user in an asp.net application?

2. How can you unload an asp.net app without touching the iis?

3. What is "delegation" in c# ?

4. in a load balancing environment, which way you choose to maintain state info, if security is important?

5. What is the life cycle of an asp.net page? (events, from start to end)

6. What command line tools do we have in .net environment?

7. What is the plugin architecture? how to use it?

That's it for today, see if you have answers...


# re: Interview Questions: ASP.NET 3/22/2005 6:34 AM Rathi
Hello sir,

Can u send me some more asp.net and vb.net interview questions with answers
my emailid is rathi_balu2004@yahoo.com

Thank you,
B.sharu


# re: Interview Questions: ASP.NET 3/22/2005 11:34 PM Dhruv goyal
it's great help . thnx for all these ...
but better if some question related to praticle situation can come..
thnx

# re: Interview Questions: ASP.NET 3/28/2005 4:37 AM sprakash

Can u send me some more asp.net and vb.net interview questions with answers
my emailid is prak_smile@yahoo.co.in
Thank you,
sprakash



# re: Interview Questions: ASP.NET 3/28/2005 9:38 AM Venkataramana Alladi
1. What is the purpose of XSLT other than displaying XML contents in HTML?

2. How to refresh a static HTML page?

3. What is the difference between DELETE and TRUNCATE in SQL?

4. How to declare the XSLT document?

5. What are the data Islands in XML?

6. How to initialize COM in ASP?

7. What are the deferences of DataSet and ???

8. What are the cursers in ADO?

9. What are the in-build components in ASP?

10. What are the Objects in ASP?


Can any body send more ASP.net questions to rampurni@yahoo.com

# MCAD question Bank 4/2/2005 4:07 AM ToLearn
Please give sites or links containing MCAD questions and answers.Please mail it to tolearnall@yahoo.co.in or
tolearn@all.com

# re: Interview Questions: ASP.NET 4/4/2005 10:12 PM jagadeesh
This is a real good stuff. I liked it very much and i'll refer it to every fresher.

# re: Interview Questions: ASP.NET 4/6/2005 11:19 AM SANDEEP KUMAR GUPTA
Excellent ! Really these questions will be very beneficial for freshers. I like these very much and hope you will send these type important question on my E-mail.
E-mail :- sandeep_gupta8sep@rediffmail.com

# re: Interview Questions: ASP.NET 4/7/2005 8:29 AM ravi kumar
Excellent ! Really these questions will be very HELPFUL for freshers. pl.send these type important question on my E-mail.
E-mail :- ravikumarkolla@rediffmail.com


# re: Interview Questions: ASP.NET 4/9/2005 9:56 PM armugam
I want interview question on asp.net, c#

# re: Interview Questions: ASP.NET 4/16/2005 3:38 AM vnvskumar@yahoo.com
Questions are good.

# re: Interview Questions: ASP.NET 4/18/2005 3:12 AM praveen
these questions are extremely fantastic.as a fresher like me, these are very helpful.I like these very much and hope you will send these type important question on my E-mail.


# re: Interview Questions: ASP.NET 4/18/2005 3:22 AM Deepu
I like these very much and hope you will send these type important question on my E-mail.


#  Interview Questions: ASP.NET 4/19/2005 9:53 PM inder
Excellent ! Really these questions will be very beneficial for freshers. I like these very much and hope you will send these type important question on my E-mail.
E-mail :- indradeochaurasiya@rediffmail.com


# re: Interview Questions: ASP.NET 4/19/2005 9:55 PM inder
Excellent ! Really these questions will be very beneficial for freshers. I like these very much and hope you will send these type important question on my E-mail.
E-mail :- indradeochaurasiya@rediffmail.com


# re: Interview Questions: ASP.NET 4/20/2005 5:59 AM Santhosh
Hi all,

Can anyone provide me some common questions on ASp.net which can be expected in interview.
consider me as a beginner. pls do mail me with Ans.

It will be very helpfull for my preparations

My email id is get2santy@yahoo.com


# re: Interview Questions: ASP.NET 4/21/2005 9:08 PM Ravi Bais
Excellent ! Really these questions will be very beneficial for all. I like these very much and hope you will send these type important question on my E-mail.
E-mail :- bais.ravi@gmail.com



# re: Interview Questions: ASP.NET 4/22/2005 8:45 PM Saravanan
Really i am satiesfied with this notes
i like this site shuld continue thier service

# re: Interview Questions: ASP.NET 4/29/2005 10:19 PM Bindu
1.Using ADO.NET Datareader a user extracted data from a database table
having 5 records.What happens if another user adda 5 more
records to the table same time.Can the first user extracted records
become 10 instead of 5 or will it remain same 5?
what about same case when ADO ? pls explain in detail.


2. Using ADO.NET Datareader a user extracts data from a database table
having 1000 rows.He closed his browser in between.
that is after fetching only 50 records.
What happens to the Datareader?will it remain connected?
and will fetch 1000 records and what after?
will garbage collector collect and dispose it soon?

3. A user fetched dtata from a database table
using Dataset(Disconnected records) for updation.
Another user deleted the table just after.
what happens when the first user try to update the table after changes? Error or Something else?

4. What are different types of assemblies in ASP.NET?


5.where is session id stored in ASP? in IIS aerver or ASP Engine?



# re: Interview Questions: ASP.NET 5/2/2005 10:08 PM alin
I really appreciate this answers. You are doing so great job here. Thank you so much.

# re: Interview Questions: ASP.NET 5/4/2005 11:12 AM dan
When designing an ASCX control is it good practice to use read from the viewstate in onload event of the control? Why or Why not.

answer: Its not good practice because if the control is loaded in page_load by use of LoadControl() it will not see any of its own viewstate in onload. So if there is a textbox on the ascx that the control needs it will not be able to see the postback data.

onload
{
string temp = textbox1.text
}

temp = ""

At the end of the onload event it will sync back up with viewstate. So in any of the userfired events it will have the correct values.

Also anything that is not named or loaded global must be loaded before it will respond to events on the pages round trip.

If the control is named in the html portion it will have its viewstate synced already in pageload.



# re: Interview Questions: ASP.NET 5/7/2005 12:28 AM syed anwar ali
A nice piece of work.

# re: Interview Questions: ASP.NET 5/10/2005 1:14 AM abcd
hmm fine

# re: Interview Questions: ASP.NET 5/11/2005 5:06 AM Yogi_virgin


thanks buddy !!!!!!!!!!!!!

# re: Interview Questions: ASP.NET 5/11/2005 5:31 AM mayur
hi it is gr8 & very helpful 4 me

# re: Interview Questions: ASP.NET 5/11/2005 9:10 AM Mukesh Kumar
I wants more interviews Question on asp.net, controls

# re: Interview Questions: ASP.NET 5/11/2005 9:17 PM Jaineesh
Pleae send me more latest questions About ASP.Net.

Thanking you,

Yours sincerely,


Jaineesh

# re: Interview Questions: ASP.NET 5/11/2005 9:22 PM Jaineesh
Please send me good more questions about ASP.Net on jaineeshthakur@homtail.com

Thanking you,

Yours sincerely,

Jaineesh

# re: Interview Questions: ASP.NET 5/17/2005 4:29 AM Ravi Goyal
i am new to ASP.NET please guide me how to approch to learn asp.net send me more questions also.

i will be very thankful of you.
Regards

Ravi Goyal