I want to pass a query string with a parameter to a webservice. Something like this:
This does not work.
[WebMethod]
public void StartIt(string someParam)
{
string someVal = HttpContext.Current.Request.QueryString.Get(someParam);
//Do whatever...
}
Is it even possible to do this? If so, what should the URL be? Its going to be placed into a simple html e-mail.
TIA
mEONr
"The beatings will continue until morale improves
This does not work.
[WebMethod]
public void StartIt(string someParam)
{
string someVal = HttpContext.Current.Request.QueryString.Get(someParam);
//Do whatever...
}
Is it even possible to do this? If so, what should the URL be? Its going to be placed into a simple html e-mail.
TIA
mEONr
"The beatings will continue until morale improves