chirag


{ City } ahmedabad
< Country > india
* Profession * student
User No # 56905
Total Questions Posted # 2
Total Answers Posted # 3

Total Answers Posted for My Questions # 1
Total Views for My Questions # 4391

Users Marked my Answers as Correct # 9
Users Marked my Answers as Wrong # 2
Questions / { chirag }
Questions Answers Category Views Company eMail

what is WCF?

1 ASP 2326

what is shop?

SOAP 2065




Answers / { chirag }

Question { 2520 }

How to use XML file as a database in the ASP


Answer

Storing XML Files on the Server

XML files can be stored on an Internet server exactly the
same way as HTML files.

Start Windows Notepad and write the following lines:


Jani
Tove
Remember me this weekend


Save the file on your web server with a proper name like
"note.xml".

Is This Answer Correct ?    0 Yes 1 No

Question { 24609 }

difference between SAP R/2 and R/3


Answer

!)R/2 runs on a mainframe, R/3 runs on Client / Server
2) R/3 has a GIU (thanks to windows) where as R/2 looks more
like DOS (although you can get a GUI for it)
3)R/3 has more functionality than R/2 making it the
preferable choice
4) SAP will support R/3 after 2004!

Is This Answer Correct ?    6 Yes 1 No


Question { Syntel, 8778 }

What is the difference between TypeOf and GetType?


Answer

GetType is a call that is made at runtime on an instance of
an object.
typeof() is resolved to a call at runtime, but loads the
type from the token
for the type. They probably resolve to the same call, it's
just that
GetType requires an instance. If I didn't need the instance,
I would use
typeof.

Is This Answer Correct ?    3 Yes 0 No