non riesco proprio a includerlo, ho l'ascx così
si trova in ssi\include1.ascx
codice:
<%@ Control Language="vb" %>
<table align="center" width="75%" border="1">
   <tr>
      <td align="center">Inserisci</td>
      <td align="center">Ricerca</td>
   </tr>
</table>
e l'aspx così, si trova nella root del webserver
codice:
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<%@ Register TagPrefix="my" TagName="table" src="ssi\include1.ascx" %>
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>

<my:table id="mt" runat="server"/>
</body>
</html>
cosa sbaglio?