9

When I try Request.UrlReferrer.ToString() this error occures:

System.NullReferenceException: Object reference not set to an instance of an object

1 Answer 1

21

You have to check if UrlReferrer is null, as it's not always set (ie, when someone typed the URL directly into the address bar, or clicked on a bookmark)...

(Request.UrlReferrer == null) ? "" : Request.UrlReferrer.ToString()
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.