0

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.

Lucky Luke2
  • 2,056
  • 5
  • 25
  • 32

1 Answers1

1

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

Massimiliano Peluso
  • 26,379
  • 6
  • 61
  • 70