会话对象在Web服务中抛出异常

时间:2013-07-06 13:09:51

标签: c# asp.net session

我正在尝试在Session对象中存储一个url但是它会抛出一个错误。

      Session["Url"]= linkDetails.Url;

Url值显示为

             http://www.mnn.com/earth-matters/space/photos/10-places-on-earth-that-resemble-alien-planets/etosha-pan-namibia

例外是

  Object reference is not set an instance of the object

1 个答案:

答案 0 :(得分:1)

如果您使用网络服务,则必须为其启用会话。

尝试[WebMethod(EnableSession=true)]