In a normal user control, we have .cs.ascx (code-behind) to assign the namespace we want our control to be in. But what if we don't have this code-behind to assign the namespace? Can we maybe assign the namespace of a user control in the headers?
EDIT I was hoping I can do somthing like this:
<%@ Control Language="C#" AutoEventWireup="true" Namespace="ThisIsTheNamespaceIWantMyControlToBeIn.Controls" %>
<b>Hello World!</b>