About System.Web.Caching "Object references not set to an instance of an object" error

Source: Internet
Author: User

The initial contact with ASP. NET soon, want to make a cache mechanism on the backend, then use the System.Web.Caching cache class.

The logic to use the part is simple, but the total error when the value is taken

private static Cache cache = new cache ();

public static string Loadcache (String Key)
{
if (cache[key] = = NULL)//This step is an error
{
return null;
}
Else
{
Return Cache[key]. ToString ();
}
}

Search the web for a solution as follows:

Use "Cache cache = Httpruntime.cache;" Instead of "cache cache = new cache ();" To create an instance of the cache.

The test passed, but the reason is unclear, understand the great god please advise.

About System.Web.Caching "Object references not set to an instance of an object" error

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.