I haven’t update my blog for so long.
So now i’m officially announcing that my blog will be stopped for a while until I got some new post or I have the mood to write new posts
Thanks for visiting.
Archive for the ‘ASP.Net’ Category
Blog stopped for a while….
Posted in ASP.Net, Personal Stuff on March 20, 2007 | 4 Comments »
ASP.NET AJAX 1.0 has released!
Posted in ASP.Net on January 25, 2007 | Leave a Comment »
ASP.NET AJAX 1.0 has finally released.
You can check out the the detail info at ScottGu’s blog.
Displaying multi-column data in IE Web Treeview
Posted in ASP.Net on October 15, 2006 | 4 Comments »
I’ve been goolgled for a copuple of weeks ago on how to display multi-column in web treeview. Unforetunately I didn’t find any control that meets my reqirement
But I found out a simple way to show multi-column in treeview.
Here’s a simple sample on how to show multi-column data in web Treeview (MS IE Web Controls).
But have some [...]
How to control page flash
Posted in ASP.Net on October 14, 2006 | Leave a Comment »
Sometimes we use navigation controls ( like treeview) on our page and the page gets flashed every time we do something on the navigation control ( clicking the treenode or expanding the treenode) . It might be annoying you sometimes. One easy way is to use meta tag in your page.
<meta http-equiv=”Page-Exit” content=”blendTrans(Duration=0.01)”>
It will control the [...]
Adding scrollbars to the table
Posted in ASP.Net on October 14, 2006 | 1 Comment »
<div style=”overflow-Y:auto; overflow-X:auto; width=300px; height=200px”>
<table>
<tr><td>….</td></tr>
.
.
.
</table>
</div>