Thursday, August 2, 2012

How to use Session in Web Services

We can use session in our web service simply by adding one attribute

In the web method section we need to add just enablesession=true;
here is systax


[webmethod(EnabledSession=true)]
my webmethod
{


}



enjoy coding..

No comments:

Post a Comment

Thanks for your valuable comments

Convert Html to Pdf in azure function and save in blob container

 In this post  I am going to create an azure function ( httpTrigger ) and send html content  which will be converted into PDF and save in bl...