Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Intellisense not working with custom control

Status
Not open for further replies.

JontyMC

Programmer
Nov 26, 2001
1,276
GB
I've overriden the GridView to create my own custom control. Works fine, drag from the toolbox and everythings great. However:
Code:
<wcl:myGridView ID="ListEdit1" runat="server" DataSourceID="SqlDataSource1" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" PageSize="5" SelectedRowStyle-BackColor="aqua">
  <Columns>
    <asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
    <asp:BoundField DataField="UpdateDTG" HeaderText="Update Date" SortExpression="UpdateDTG" />
  </Columns>
</wcl:myGridView>
Intellisense doesn't work between the <Columns> tags. Any idea what could've caused this or how I get it back.

Jon

"I don't regret this, but I both rue and lament it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top