Cuando creo una tabla por código dentro del control de usuario, el intellisence no me ayuda. Me marca la etiqueda table con una rayita roja debajo y cuando me coloco encima de la etiqueta me dice: "Validation (ASP.Net): Element 'table' is not supported."
Pero cuando corro la aplicación funciona perfectamente.
¿Por qué no reconoce la etiqueda table?

El código que tengo en el UserControl es el siguiente:
Código:
  
 <%@ Control Language="VB" AutoEventWireup="false" CodeFile="MenuPorDepto.ascx.vb" Inherits="Controles_MenuPorDepto" %>
<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>
<table>
    <tr>
        <td>Algo</td>
    </tr>
</table>
 
 

 Por qué el intellisence no recoce muchas etiquetas HTML
 Por qué el intellisence no recoce muchas etiquetas HTML  
  
 
