Anton Putov
Anton Putov

Reputation: 1981

Client computer(browser) properties in PageLoad

Can I know client computer(browser) properties such as screen width when page requests? I need it beckause I dont want to use jquery on client side to set neccesary changes adopting to client browser.

Upvotes: 2

Views: 113

Answers (1)

Andrew Barber
Andrew Barber

Reputation: 40150

Unfortunately, no; without some client information wrangling, you can not get information such as screen size from the browser. PageLoad would basically give you access to the basic request information, none of which will contain any information about browser/window size unless you have had client script collect and submit such information

Upvotes: 3

Related Questions