Logo 
Search:

Asp.net Answers

Ask Question   UnAnswered
Home » Forum » Asp.net       RSS Feeds
  Question Asked By: Dai Tanaka   on Nov 03 In Asp.net Category.

  
Question Answered By: Fedde Bakker   on Nov 03

Are you talking about persisting or accessing data? I think both.

Persistance is possible in many ways and it depends on the data you want to
persist but persisting is rational if it doesn't change a lot. This is often
with some classifications etc...
Use:
- Cache to share the same data across all active sessions
- Session to persist data to one session only
- ViewState to persist data during postbacks of the same page to one sesssion
only

Getting data is another story. You can direct query your data using T-SQL
statements or use Stored Procedures (but use them for the purpose those are made
for), or you can also communicate using XML. You could make a web service to
handle manipulating data. You communicate with web services using XML.

But getting and converting data to XML is possible if you use directive FOR XML
in you SELECT query statements... YOur SQL server will return data in XML
structure.

Share: 

 

This Question has 2 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on High volume transactions Or get search suggestion and latest updates.


Tagged: