1

我正在尝试将 url 存储在 Session 对象中,但它会引发错误。

      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
4

1 回答 1

1

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

尝试[WebMethod(EnableSession=true)]

于 2013-07-06T13:21:34.983 回答