ASP.NET [rss]

ScriptManager, AjaxControlsToolkit and .NET Framework 3.5

  This might save you some head hitting on the wall. I'm working on a Web App using VS.NET 2005. I'm using ASP.NET AJAX and the AJAX Controls Toolkit in the application. I have a lot of javascript to write, so I decided to use VS.NET 2008 instead Read More

Converting DataRow Array to DataTable

Here's a little function I wrote the other day that I think might be helpful for some of you.I was filtering a datatable using the DataTable.Select method. The Select method returns the filtered rows as an array of DataRow objects, but I wanted the result Read More

Dynamically changing the title of a webform in ASP.NET 1.1

If you started using ASP.NET 2.0, you'll probably know that you can set the title of a page dynamically using the new Title property. In ASP.NET 1.x, there is no straight forward way of doing it. One of the very common ways of achieving this is by placing Read More

Authenticating to send an email

I haven't been blogging for a while now. Its because I've been really busy lately, lots of project deadlines, and lots of new projects. Hopefully I'll start blogging more frequently. Here's a small piece of code I found, and thought of sharing it Read More

My photo with Dimitry Robsman

Do I have to tell you guys who's Dimitry Robsman, any ASP.NET developer show already know who he is. Any way, for those of you who don't know him, here's a short bio taken from his blog              "Dmitry Read More

The ATE booths rock

I'm posting this from the ATE booths, the ASP.NET section. Its really great, I was able to meet people from the ASP.NET team, I'm actually working with them on the ATE booths, and I'm glad that I was able to answer a couple of questions from the attendees. Read More

Unable to open web application after changing its physical location

Ok, so you have probably seen this like a thousand times, but I'm going to mention it again. If you're working on a web application, and for some reason, you change its physical location and make the virtual directory point to this new location, Read More

Visual Studio 2005 beta clean up tool

If you haven't installed Visual Studio 2005 beta 2 yet, and you have Visual Studion 2005 beta 1 or CTP installed, then make sure you get the clean up tool to help you uninstall those previous versions before installing the beta 2. You can find it her Read More

Installing Visual Web Developer 2005 Express Edition Beta 2

I downloaded and installed Visual Web Developer 2005 Express Edition Beta 2 today. It installed fine. But when I started it I got 5 messageboxes saying "Package 'Visual Studio Common IDE Package' has failed to load properly (GUID={6E87CFAD-6C05-4ADF-9CD7-387943875B7C)}. Read More

Calling a webservice through a proxy server

Here's a quick tip on how to call a webservice through a proxy server.                 Dim webproxy As New System.Net.WebProxy("Proxy server url or IP", myport)                 Read More