Users Pricing

forum

Home Forums Help with NullReference exception in C# – MindStick

Help with NullReference exception in C#

Anonymous User 2244 23 Aug 2014

The following is a web method that is called from ajax, I have verified with firebug that the script is indeed passing two string values to my method:

public string DealerLogin_Click(string name, string pass)
{
    string g="adf";
    if (name == "w" && pass == "w")
    {
        HttpContext.Current.Session["public"] = "pub";
        g= "window.location = '/secure/Default.aspx'";
    }
    return g;
}

 If I delete the if block then I don't get an error back from the server. 


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md