Detect Internet explorer browser version problems

I have Getaway in my MVC3 application in Layout : \[code\]@if ((Request.Browser.Browser == "IE") && ((Request.Browser.MajorVersion == 7))){//show some content}else{//show another content }\[/code\]I have many users complains (users with internet explorer 8). They see Internet explorer 7 content from my app.What wrong with my way of detecting Internet explorer 7 version?How can i bee sure for 100% in my application that user have internet explorer 7 version?May bee this is specific OS problem?
 
Back
Top