Click here to Skip to main content
15,914,066 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: ASP.net Hello world Pin
Christian Graus15-Apr-07 17:07
protectorChristian Graus15-Apr-07 17:07 
Questionjavascript !! Pin
Tamimi - Code15-Apr-07 3:03
Tamimi - Code15-Apr-07 3:03 
AnswerRe: javascript !! Pin
Guffa15-Apr-07 3:21
Guffa15-Apr-07 3:21 
GeneralRe: javascript !! Pin
Tamimi - Code15-Apr-07 3:30
Tamimi - Code15-Apr-07 3:30 
AnswerRe: javascript !! Pin
Bradml15-Apr-07 4:37
Bradml15-Apr-07 4:37 
GeneralRe: javascript !! Pin
Tamimi - Code15-Apr-07 18:55
Tamimi - Code15-Apr-07 18:55 
AnswerRe: javascript !! Pin
RichardGrimmer16-Apr-07 1:06
RichardGrimmer16-Apr-07 1:06 
GeneralRe: javascript !! Pin
Tamimi - Code16-Apr-07 1:44
Tamimi - Code16-Apr-07 1:44 
GeneralRe: javascript !! Pin
RichardGrimmer16-Apr-07 6:17
RichardGrimmer16-Apr-07 6:17 
QuestionWeb Service Response Pin
usermans14-Apr-07 23:11
usermans14-Apr-07 23:11 
AnswerRe: Web Service Response Pin
Guffa15-Apr-07 2:01
Guffa15-Apr-07 2:01 
QuestionSave Dialog box control Pin
EEmaan13-Apr-07 3:34
EEmaan13-Apr-07 3:34 
AnswerRe: Save Dialog box control Pin
Bradml13-Apr-07 3:44
Bradml13-Apr-07 3:44 
Questiondropdown list box problem Pin
kumar bharat bhusanam12-Apr-07 21:08
kumar bharat bhusanam12-Apr-07 21:08 
AnswerRe: dropdown list box problem Pin
Bradml12-Apr-07 22:07
Bradml12-Apr-07 22:07 
AnswerRe: dropdown list box problem Pin
Jaiprakash M Bankolli12-Apr-07 22:59
Jaiprakash M Bankolli12-Apr-07 22:59 
QuestionServer Access Issue Pin
No-e12-Apr-07 4:52
No-e12-Apr-07 4:52 
AnswerRe: Server Access Issue Pin
kubben12-Apr-07 5:26
kubben12-Apr-07 5:26 
QuestionASP.NET 2.0 Login Problems Pin
Illegal Operation12-Apr-07 2:20
Illegal Operation12-Apr-07 2:20 
AnswerRe: ASP.NET 2.0 Login Problems Pin
Magnus Salgo12-Apr-07 4:34
Magnus Salgo12-Apr-07 4:34 
AnswerRe: ASP.NET 2.0 Login Problems Pin
Jaiprakash M Bankolli12-Apr-07 22:58
Jaiprakash M Bankolli12-Apr-07 22:58 
QuestionIIS problem Pin
Navneet Hegde12-Apr-07 1:27
Navneet Hegde12-Apr-07 1:27 
AnswerRe: IIS problem Pin
Jaiprakash M Bankolli14-Apr-07 4:02
Jaiprakash M Bankolli14-Apr-07 4:02 
QuestionJavascript resizing code Pin
Sam Heller11-Apr-07 22:54
Sam Heller11-Apr-07 22:54 
I have a page designed and laid out entirley using CSS. The main content of the page sits in a DIV and so does a sidebar which runs down it's side. The problem I have is that the side bar is pretty much all of the time shorter than the content DIV. What I wanted was some code to force the sidebar DIV to replicate the height of the content DIV and therefore act like two td cells in a table. Anyway I came up with the following Javascript code which is run on the pages onload event.

function FannyFart() <br />
{<br />
    //Do A Fanny Fart<br />
	var ContentHeight = document.getElementById("Content").clientHeight;<br />
	document.getElementById("ctl00_SideBar").style.height = (ContentHeight + "px");<br />
}


This code seems to work and provides correct outcome except for two scenarios. A: When a validator appears dynamically. B: When the page content changes upon and AJAX async call.

Now obviously this is because by code is not running because the page onload event is not happening. How can I have my code rerun on any change to the page?
AnswerRe: Javascript resizing code Pin
badgrs11-Apr-07 23:08
badgrs11-Apr-07 23:08 

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.