Click here to Skip to main content
15,888,968 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: spacebar problem for insertion Pin
SachinKumar M23-Mar-09 19:52
SachinKumar M23-Mar-09 19:52 
GeneralRe: spacebar problem for insertion Pin
roshid23-Mar-09 20:06
roshid23-Mar-09 20:06 
QuestionHelp needed in finding control Pin
The Pod23-Mar-09 16:14
The Pod23-Mar-09 16:14 
AnswerRe: Help needed in finding control Pin
Cybernate24-Mar-09 10:45
Cybernate24-Mar-09 10:45 
QuestionASP.Net Multiline Text Box Pin
Ryan Fleming23-Mar-09 4:39
Ryan Fleming23-Mar-09 4:39 
AnswerRe: ASP.Net Multiline Text Box Pin
Rutvik Dave23-Mar-09 9:57
professionalRutvik Dave23-Mar-09 9:57 
GeneralRe: ASP.Net Multiline Text Box [modified] Pin
Ryan Fleming23-Mar-09 16:44
Ryan Fleming23-Mar-09 16:44 
GeneralRe: ASP.Net Multiline Text Box Pin
Rutvik Dave24-Mar-09 4:24
professionalRutvik Dave24-Mar-09 4:24 
OK. This is odd problem because of soo many browsers we have. every browser render the page differently, so its very difficult to make height 100% in all the browser.

You need to set margin and padding to 0 to avoid scroll bars, if scroll bars are visible, you will not able to get 100% height. also in IE you can use min-height : 100%;.

try this in < style > tag

*
    {
        margin: 0;
        padding: 0;
    }
    
html
    {
        height: 100%;
    }
    
body
    {
        height: 100%; 
    }


or you can just set the Rows of multi line text-box to like 150 or something, or you can modify your java script to change the Rows based on Page height.

I am not sure if this will work in all the browsers.
GeneralRe: ASP.Net Multiline Text Box Pin
Ryan Fleming24-Mar-09 8:05
Ryan Fleming24-Mar-09 8:05 
GeneralRe: ASP.Net Multiline Text Box Pin
Rutvik Dave25-Mar-09 4:10
professionalRutvik Dave25-Mar-09 4:10 
QuestionProblem with Remote Debugging Pin
dlarkin7723-Mar-09 4:38
dlarkin7723-Mar-09 4:38 
AnswerRe: Problem with Remote Debugging Pin
dlarkin7723-Mar-09 5:30
dlarkin7723-Mar-09 5:30 
QuestionSave As Dialog Box in Asp.Net Application Pin
pavanip23-Mar-09 4:03
pavanip23-Mar-09 4:03 
AnswerRe: Save As Dialog Box in Asp.Net Application Pin
Abhishek Sur23-Mar-09 5:47
professionalAbhishek Sur23-Mar-09 5:47 
AnswerRe: Save As Dialog Box in Asp.Net Application Pin
Abhijit Jana23-Mar-09 18:26
professionalAbhijit Jana23-Mar-09 18:26 
GeneralRe: Save As Dialog Box in Asp.Net Application Pin
codekhan111-Jun-11 20:39
codekhan111-Jun-11 20:39 
Questionhow i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 2:11
Rameez Raja23-Mar-09 2:11 
AnswerRe: how i write a function or method which return table row with 32 cells any help. Pin
SeMartens23-Mar-09 2:55
SeMartens23-Mar-09 2:55 
AnswerRe: how i write a function or method which return table row with 32 cells any help. Pin
Abhishek Sur23-Mar-09 3:59
professionalAbhishek Sur23-Mar-09 3:59 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 18:23
Rameez Raja23-Mar-09 18:23 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Spunky Coder23-Mar-09 19:23
Spunky Coder23-Mar-09 19:23 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Rameez Raja23-Mar-09 21:59
Rameez Raja23-Mar-09 21:59 
GeneralRe: how i write a function or method which return table row with 32 cells any help. Pin
Spunky Coder23-Mar-09 22:25
Spunky Coder23-Mar-09 22:25 
Questionhow do i change the background image of a web apge through profile Pin
souravghosh1823-Mar-09 1:00
souravghosh1823-Mar-09 1:00 
AnswerRe: how do i change the background image of a web apge through profile Pin
Abhishek Sur23-Mar-09 3:33
professionalAbhishek Sur23-Mar-09 3:33 

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.