Error (RSS)

All the errors i'm walking into.

No connection could be made because the target machine actively refused it

Hi all i had the following error:

After i upload the FTP component edtFTPnet (from http://www.enterprisedt.com/) to my webserver.
This error seemed to have been made by the server because it was blocking the 21 port that way the ftp component did not allow the connection.

Happy netting,
Warnar

Stupid OleDbCommand.Parameters

Hi all,

Men i have been f*cking up today i had some nice OleDbCommand lbut one way or the other the paramaters didn't work right it looked like this:

OleDbCommand SelectCommand = new OleDbCommand("SELECT DesignID, Name, TextColor, BackGroundAlign, BackGroundColor, BackGroundImage, BackGroundRepeat FROM DesignFrames WHERE (DesignID = ?) AND (Name = ?)",this.oleDbConnection1);

SelectCommand.Parameters.Add(new
System.Data.OleDb.OleDbParameter("Name", System.Data.OleDb.OleDbType.Integer));

SelectCommand.Parameters.Add(
new System.Data.OleDb.OleDbParameter("DesignID", System.Data.OleDb.OleDbType.Integer));

After spending about 1 hour i find out that with OleDbCommand the order of the Parameters mather so great yet another hour wasted on notting. My code now looks like this:

OleDbCommand SelectCommand = new OleDbCommand("SELECT DesignID, Name, TextColor, BackGroundAlign, BackGroundColor, BackGroundImage, BackGroundRepeat FROM DesignFrames WHERE (DesignID = ?) AND (Name = ?)",this.oleDbConnection1);

SelectCommand.Parameters.Add(new System.Data.OleDb.OleDbParameter("DesignID", System.Data.OleDb.OleDbType.Integer));

SelectCommand.Parameters.Add(new
System.Data.OleDb.OleDbParameter("Name", System.Data.OleDb.OleDbType.Integer));

Happy Netting,
Warnar Boekkooi

Internal Compiler Error: stage 'BEGIN'

Strange error:
Internal Compiler Error: stage 'BEGIN'
and a lot more this because some enum i use the problem was that i typed Database.NameOfTheEnum.Option1 where Class was defined as Database.DB Class = new Database.DB()
But i didn't know that i just couldn't access a enum like that.
The way to access one is Database.DB.NameOfTheEnum.Option1 if you get my point hope you do.

Happy netting,
warnar

CS1607: Assembly generation -- Referenced assembly 'DataBase' is a localized satellite assembly

Got the following error while working:
CS1607: Assembly generation -- Referenced assembly 'DataBase' is a localized satellite assembly

I was the [assembly: AssemblyCulture(””)] witch i had changed to [assembly: AssemblyCulture(”nl”)]

Happy netting,
warnar