can u any one tell me clearly where is stored cache datas?
Answers were Sorted based on User's Feedback
Answer / pravin more
Data Can be cached at Three locations
1) Client Side
2) On Server
3) On Proxy Server
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / praveen singh
Cache data is store in memory and cache size is double of
memery size .
Regards,
Praveen Singh
Praveen.kumar4u1093@gmail.com
Is This Answer Correct ? | 4 Yes | 4 No |
In my code i have 3 tables,i have to insert 3 tables data using single insert query so that i wrote transations in a sp.but what my problem is,in those 3 tables i have to include my empId from another table.when i'm passing values im getting error at this EmpId. how can i solve this error to execute insert query? plesae tell me the solution...
About Usage of server variables ?
What are the event handlers that we can have in global.asax file?
What is difference between user control and custom control?
can we transfer data from one page to another page using viewstate if so how?if not y?
37 Answers AppShark, DataSync, Gtech, iGate, Wipro,
What are the namespace classes used in asp.net mvc? : asp.net mvc
What is the main difference between grid layout and flow layout?
what is postback implementation?when pre-render event n init event is fired?
What is the purpose of url encoding?
Differentiate between structure and class.
Compare and contrast between inline and code behind - which one is best?
You are creating a Web site for Your company. You receive product lists in the form of XML documents. You are creating a procedure to extract information from these XML documents according to criteria that your users will select. When a user makes a request, you want the results of these requests to be returned as quickly as possible. What should you do? A . Create an XmlDataDocument object and load it with the XML dat Use the DataSet property of the object to create a DataSet object. Use a SQL SELECT statement to extract the requested dat B . Create an XmlDataDocument object and load it with the XML data. Use the SelectNodes method of the object to extract the requested data. C . Create an XPathDocument object and load it with the XML data. Call the CreateNavigator method to create an XPathNavigator object. Call the Select method of the XPathNavigator object to run an XPath query that extracts the requested data. D . Create an XmlReader object. Use the Read method of the object to stream through the XML data and to apply an XPath expression to extract the requested data.