Thursday, Sep 02, 2010
Login

Posts Tagged ‘.NET’

C# Missing References

If you are getting an error like “The type or namespace name does not exist in the namespace” you may have found yourself tweaking the references or the using statements in your C# code. The using statement and the referencing statement differ in that the using statement is a logical link and reference to the [...]


Using properties in an ASP.net Web Control

When creating a web control in an ASP.net application many times you will need to make references to information, data values and other contents of the web control from the web control parent. This is done by adding a Property statement on the control. It could be as simple as a Username and Password control [...]


.NET and MySQL

Searching for a document that helps to connect a .NET web application with MySQL is hard to find. So, I thought I would provide instructions I put together while developing my own applications. The .NET infrastructure is very flexible and is easier to use than people think. Here are the steps that I went through [...]