Click on this icon to open the XML page.Tom Van Gaever - Blog
Search:   

LinkedIn.com 
Sunday, September 16, 2007, 10:03
Posted by Administrator
View Tom Van Gaever's profile on LinkedIn
add comment ( 4 views )   |  permalink   |   ( 3 / 409 )
Lifted, Pixar’s latest short film 
Sunday, September 16, 2007, 09:44
Posted by Administrator



Lifted is Pixar’s latest short film that was released theatrically with the movie Ratatouille.
add comment ( 4 views )   |  permalink   |   ( 3 / 540 )
Which file extension are you? 
Sunday, September 16, 2007, 09:24
Posted by Administrator
Which file extension are you?



Which Programming Language Are You?



Which OS are you?


add comment ( 4 views )   |  permalink   |   ( 3 / 558 )
CSS Min-Height In IE6 and all Browsers! 
Friday, September 14, 2007, 10:41
Posted by Administrator
While searching after a method to assign a min-height on IE6 I found this little trick:


#wrapper{
min-height:500px;
height:auto !important;
height:500px;
}


Example:


<div id="header">HEADER</div>
<div id="wrapper">
<p>content</p>
</div>
<div id="footer">FOOTER</div>


that's all ;)


add comment ( 1 view )   |  permalink   |   ( 3 / 530 )
Ajax Script Error on Refresh, Back button click only in IE 6 SP2  
Thursday, September 13, 2007, 13:39
Posted by Administrator
When you want to use AJAX.NET extensions build for .NET 3.5, the update panel control returns javascript errors in the scriptmanager. As you know, javascript does noet work anymore since it has detected an error...

When i tested my webapplication in IE6 an error occured and my uber design ajax.net menu won't work anymore...

Ssearching for a while a discovered that a small adjustment in the web.config resolves the problem without making other collisions to to the other browsers.


<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="false" enableCaching="false" />
</scripting>
</system.web.extensions>


add this to your web.config and the error is vanished!

add comment ( 3 views )   |  permalink   |   ( 3.1 / 346 )

<<First <Back | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | Next> Last>>