Archive for the ‘asp.net’ Category
Thursday, August 2nd, 2007
I was working on an ASP.net application (1.1) the other day, changing the UI display of a page. This page basically consisted of a Repeater being populated with data from the DB, and binding javascript actions and styling info to the different rows to be output (each overall it was ...
Posted in Code, asp.net, c# | No Comments »
Tuesday, November 28th, 2006
For those who have not heard about it, Mono is a platform designed to allow porting of .Net-based applications to nearly every computing platform available (including Linux and Mac). It is open-source (sponsored by Novell) and is an essential tool for any developer who wishes to run .Net code on ...
Posted in Code, asp.net, c# | No Comments »
Thursday, September 28th, 2006
I just read a post from Karl Seguin on CodeBetter (quoting Frans, who quoted Soma) that Visual Studio 2002 and 2003 will not run on Windows Vista. Or to quote Soma directly:
However, we will not support Visual Studio .NET 2002 or Visual Studio .NET 2003 as development environments on Windows ...
Posted in Articles, Code, asp.net | No Comments »
Wednesday, September 27th, 2006
On an ASP.net site (1.1), I was trying to send an email message using good old SmtpMail.Send(MailMessage message). When I did so, I got the following message "could not access CDO.message object". After some Googling, I tried out all of the different security/smtp/relary/permissions related suggestions (most can be found on ...
Posted in Code, asp.net, c# | 2 Comments »
Tuesday, June 27th, 2006
Back with ASP.net 1.1, if you set a connection string in your Web.config file, you could set it with something like this:
<appSettings>
<add key="ConnectionStringName" value="ConnectionStringData" />
</appSettings>
and get access to the string in your code with something like this:
string connString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionStringName"];
With ASP.net 2.0, while you can still use appsettings ...
Posted in asp.net, c# | No Comments »
Thursday, May 18th, 2006
Due to some bad problems with my main machine, I have been in the process of bringing my backup laptop (Inspiron 5150, 768mb RAM, almost three years old, recently reformatted) up to speed for my development needs. This included installing Crystal Advanced Developer 10 (required for one of the ASP.net ...
Posted in Code, Web, asp.net, windows forms | No Comments »