Click here to Skip to main content
15,913,685 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Manage role is this correct? Pin
Not Active12-Jul-10 3:33
mentorNot Active12-Jul-10 3:33 
AnswerRe: Manage role is this correct? Pin
Peace ON12-Jul-10 3:39
Peace ON12-Jul-10 3:39 
GeneralRe: Manage role is this correct? Pin
Not Active12-Jul-10 4:25
mentorNot Active12-Jul-10 4:25 
QuestionRe: Manage role is this correct? [modified] Pin
amina8912-Jul-10 5:14
amina8912-Jul-10 5:14 
AnswerRe: Manage role is this correct? Pin
Not Active12-Jul-10 5:23
mentorNot Active12-Jul-10 5:23 
QuestionRe: Manage role is this correct? Pin
amina8912-Jul-10 5:56
amina8912-Jul-10 5:56 
QuestionMessage Removed Pin
12-Jul-10 2:06
Sr...Frank12-Jul-10 2:06 
AnswerRe: How to fix resolution in ASP.NET? Pin
Peace ON12-Jul-10 2:24
Peace ON12-Jul-10 2:24 
Are you seriously asking to modify the client's screen resolution from ASP.NET? No, you can't do this.

Explore your layout options. Look at relative CSS formatting (width: 80%; vs. width: 800px). At worst, discover the client's resolution and adjust.

From http://particletree.com/features/dynamic-resolution-dependent-layouts/[^]

In Javascript...
function getBrowserWidth(){
    if (window.innerWidth){
        return window.innerWidth;}  
    else if (document.documentElement && document.documentElement.clientWidth != 0){
        return document.documentElement.clientWidth;    }
    else if (document.body){return document.body.clientWidth;}      
        return 0;
}



Also find following links useful.
http://devcity.net/Articles/64/1/screenresolution.aspx[^]


HTH
Jinal Desai - LIVE
Experience is mother of sage....

QuestionMessage Removed Pin
12-Jul-10 1:03
jintalPatel12-Jul-10 1:03 
AnswerRe: Javascript : Not Set the value at server side Pin
Peace ON12-Jul-10 1:24
Peace ON12-Jul-10 1:24 
QuestionISPostBack is TRUE when going to the page even at first time [modified] Pin
AnandDesai1912-Jul-10 0:54
AnandDesai1912-Jul-10 0:54 
AnswerRe: ISPostBack is TRUE when going to the page even at first time Pin
Peace ON12-Jul-10 0:57
Peace ON12-Jul-10 0:57 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
AnandDesai1912-Jul-10 1:02
AnandDesai1912-Jul-10 1:02 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
Not Active12-Jul-10 1:25
mentorNot Active12-Jul-10 1:25 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
AnandDesai1912-Jul-10 1:42
AnandDesai1912-Jul-10 1:42 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
NeverHeardOfMe12-Jul-10 1:43
NeverHeardOfMe12-Jul-10 1:43 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
AnandDesai1912-Jul-10 1:47
AnandDesai1912-Jul-10 1:47 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
Not Active12-Jul-10 2:26
mentorNot Active12-Jul-10 2:26 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
NeverHeardOfMe12-Jul-10 2:34
NeverHeardOfMe12-Jul-10 2:34 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
AnandDesai1912-Jul-10 1:54
AnandDesai1912-Jul-10 1:54 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
Not Active12-Jul-10 2:31
mentorNot Active12-Jul-10 2:31 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
NeverHeardOfMe12-Jul-10 4:38
NeverHeardOfMe12-Jul-10 4:38 
GeneralRe: ISPostBack is TRUE when going to the page even at first time Pin
Not Active12-Jul-10 5:00
mentorNot Active12-Jul-10 5:00 
AnswerRe: ISPostBack is TRUE when going to the page even at first time Pin
SomeGuyThatIsMe12-Jul-10 4:14
SomeGuyThatIsMe12-Jul-10 4:14 
AnswerRe: ISPostBack is TRUE when going to the page even at first time Pin
T M Gray12-Jul-10 11:05
T M Gray12-Jul-10 11:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.