Interview Question in Database Design


 

Interview Question :: Can anyone tell me for what purpose ASP.NET and ADO.NET is used


I have heared that ASP.NET is used for interface desiging but if in .NET forms are provided the why we need to design interface.Similarly if SQL server is used for databases then why we use ADO.NET. Thanks
Answers to "Can anyone tell me for what purpose ASP.NET and ADO.NET is used"
RE: Can anyone tell me for what purpose ASP.NET and ADO.NET is used?

ASP.NET is a technology that runs in conjunction with Microsoft's Internet information server. You can write server code in a language like C# in order to do some processing before you send a response back to the person that is browsing at your web server. Now if you want to store some stuff in the database like the last time that that person came to your site or how many points he has accumulated, asp.net can use ado.net to communicate w/ sql server and display the point total.



Hope that helps



RJ
 
Vote for this answer ::  
RE: Can anyone tell me for what purpose ASP.NET and ADO.NET is used?

ASP is for web interface design, it's server side code that builds a page and sends it to an HTTP client. SQL Server can be used to store data, but if you have an application that needs to access it, you use ADO.net. ADO can talk to other data sources too, like Access or Oracle. ADO is a programming interface to access databases, SQL Server is an instance of a database server.
 
Vote for this answer ::  
Update Alert Setting