First of all, let me say I'm NOT trying to create an auto-suggest control.
I am trying to create a custom composite control (in C#), but the auto-suggest feature within the VS2008 IDE isn't auto-suggesting like it does on other files. In fact, the object declarations are not highlighted like they should be either. When I compile, though, I get no errors.
Specifically, I have a table, tablerows, table cells in my control, and I declare them at the beginning of the class:
private Table htmlTABLE;
private TableRow htmlTR;
private TableCell htmlTD;
Again, the keywords Table, TableRow, and TableCell are not highlighted as they should be - like they're not recognized.
The only thing I can think of is that the CS file is stand-alone and not attached to an ASPX page. All the references are correct at the beginning (same as on other pages where auto-suggest i ...
Go to the complete details ...