Pergunta

I am trying to set a session variable in a class that implements IHttpModule. I receive a "Object reference not set to an instance of an object."

Here is my code:

    public void Init(HttpApplication context)
    {
        context.PreRequestHandlerExecute += context_PreRequestHandlerExecute;

    }

    private void context_PreRequestHandlerExecute(object sender, EventArgs e)
    {
        HttpApplication app = (HttpApplication) sender;
        HttpRequest request = app.Context.Request;
        app.Session.Add("capath", request.QueryString["capath"].ToString());


    }

Please help.

Foi útil?

Solução

I guess the issue is that the query string does not contain "capath" key / value and you get the object null exception because you call .ToString() on a null object

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top