Feeds:
Posts
Comments

Archive for January, 2007

Microsoft has released the source code of server-side ASP.NET AJAX 1.0. take a look at Scott Guthrie’s Blog or download it here.

Read Full Post »

VSTS Workspace

I read a post on the blog of Chris Menegay which give you a short overview of what workspaces are and how they really work. I think that when you are going to work or already working with VSTS some notion of workspaces is a must. It isn’t difficult and when you know i makes a lot of [...]

Read Full Post »

I saw a very interesting post on the Ajax forum. NXTwoThou had a problem with 2 radiobutton controls which must fire the OnCheckedChanged event. Here is the code.
    <script runat=”Server”>
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
                ddl_customers_specific.Items.Add(new ListItem(“Test”));
        }
        protected void rb_customers_all_CheckedChanged(object sender, EventArgs e)
        {
            ddl_customers_specific.BackColor = System.Drawing.Color.Red;
        }
        protected void [...]

Read Full Post »

Hi,Like i already told i’am very interested in the MS Ajax technology. I also knew that this technology wasn’t a new one. So i decided the read a book about Ajax. The book that i found at the local bookstore was: “Ajax for Web Application Developers, Kris Hadlock”.I think that this book gives you a good [...]

Read Full Post »

Intoduction

Hi all,
I would like to welcome you to my first webblog. The reason why i started this webblog is that i want to share the knowlegde that i have and that i will get in the future with you. Right now i’am focussing on a few categories that i’am interested in: MS Ajax, Visual Studio [...]

Read Full Post »