Reputation: 490
From UserProfile.aspx file:
<td runat="server" class="CenterColumn">
<AspNetSHliga:UserProfile runat="server" ID="Userinfo1" NAME="Userinfo1" />
</td>
Hi, I've got this code. "AspNetSHliga:UserProfile" generate a huge table that i need to edit it. Problem is there's only one UserProfile.aspx file. And this is it. This UserProfile.aspx somehow "include" itself just like in the code above. And generate the table. There's another one called UserProfile.cs where is Engine. But if I edit it, or even delete it(refresh server, rebuild project or whatever..). Table is still generating..
Is there something I missing? A looked everywhere. And there are only one UserProfile.aspx file.
Upvotes: 0
Views: 119
Reputation: 6924
No, it can't include itself, but you probably have a UserControl
named UserProfile, which will have the file extension .ascx
rather than .aspx
. Look at the top of the file or web config to see where AspNetSHliga
is referenced.
Upvotes: 4