Data Transfer
-
Hello, I have very basic questions: a) How data is trasnfered from client to server and vice versa on Internet.? Is it binary format or something else.... b) Where viewstate is stored? Is it on server memory? c) Type are stored in which namespaces? Is it system? Thanks!! Thanks!!
-
Hello, I have very basic questions: a) How data is trasnfered from client to server and vice versa on Internet.? Is it binary format or something else.... b) Where viewstate is stored? Is it on server memory? c) Type are stored in which namespaces? Is it system? Thanks!! Thanks!!
Amit Kumar G wrote:
a) How data is trasnfered from client to server and vice versa on Internet.? Is it binary format or something else....
Data is transferred on HTTP (Hyper Text Transfer Protocol) which sits on top of TCP/IP. As the name suggests it is a text based protocol.
Amit Kumar G wrote:
b) Where viewstate is stored? Is it on server memory?
On the page. While the server is processing the page a copy be held in the ViewState property.
Amit Kumar G wrote:
c) Type are stored in which namespaces? Is it system?
Types in general? Or the Type type. There is a class called System.Type. But types, in general, are placed in the namespace in which they were defined.
-- Always write code as if the maintenance programmer were an axe murderer who knows where you live. Upcoming FREE developer events: * Glasgow: Agile in the Enterprise Vs. ISVs, Mock Objects, SQL Server CLR Integration, Reporting Services, db4o ... * Reading: SQL Bits My website