new bie

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm a beginner in .Net
I have got few questions
Can anyone help me out

1. What is 'extensibility model'? Where is it used and what are it's features

2. What are ISAPI extension and filter modules

3. What is Xcopy deployment

4. waht are database projects and how are they different from c# or vb projects

5.When I retrieve data using a dataadapter, where is it stored- RAM or hard disk
 
¤ I'm a beginner in .Net.
¤ I have got few questions.
¤ Can anyone help me out?
¤
¤ 1. What is 'extensibility model'? Where is it used and what are it's features?

http://msdn.microsoft.com/library/d...-us/csext/html/csconextensibilityoverview.asp

¤
¤ 2. What are ISAPI extension and filter modules?

http://msdn.microsoft.com/library/d...ver_extension_.28.isapi.29_.or_filter_dll.asp

¤
¤ 3. What is Xcopy deployment?

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/xcopywininst.asp

¤
¤ 4. waht are database projects and how are they different from c# or vb projects?

Database projects are simply subsets of C#, VB.NET, ASP.NET, etc projects which typically involve
creating connections to databases using a visual designer or application code.

¤
¤ 5.When I retrieve data using a dataadapter, where is it stored- RAM or hard disk?
¤

It's retrieved and stored as an in memory table representation. With respect to the .NET framework,
it's a DataTable object in a DataSet collection.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
I think you just filled in the answers for his mid-term exam. ;)

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________

 
Back
Top