I am trying to pass a variable from an asp project (written in c#) to a desktop c# application. I know using Javascript you can use a JavaScriptSerializer, but is there an equivalent for asp?
I am trying to pass a variable from an asp project (written in c#)
Share
Depends on what you want to send back to the app or what is already being sent back by the server. i.e. let’s say the result of a web page request were the “parameters” you speak of (you’re not very clear, in the context of http and web communications). An ASP page can pass back the data to an app that requested data like this:
… keep in mind, that’s the code in the app. I assume that’s what you’re asking; because there’s really only one way to data from an asp application.
If that’s not what you’re really asking, please be more detailed.