views:

25

answers:

1

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?

+1  A: 

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

Vitaliy Liptchinsky