Carra
Carra

Reputation: 17964

Asp.net: pass client information

I'm building a website with asp.net mvc and there is some data that I need to consult with every browser request. This contains the clients date and its latitude/longitude. This way we can update the users (using a PDA) location.

If we assume that I already have the latitude & longitude, how can I pass it to the webserver with every browser request?

Upvotes: 0

Views: 245

Answers (1)

Vitaliy Liptchinsky
Vitaliy Liptchinsky

Reputation: 5299

HTTP headers (and cookies in particular) look like an appropriate place.

Upvotes: 1

Related Questions