C# Web User Control (DLL) isn't rendering any GUI on Web Page

275 Views Asked by At

I made a user control (.ascx), implemented its functionality and after testing made a DLL by publishing the website.
I then made a new website project in Visual Studio and add a reference of User Control DLL in it, registered it on the page where I need to use it and then refer it there.
My code isn't giving any errors but it is not rendering any GUI on run.

I am using this for registeration of user controll dll on aspx page where I need to use it.

<%@ Register Assembly="App_Web_submodule.ascx.cdca7d2" Namespace="ASME" tagPrefix= "UC" %> 

During my search I found these two sites " https://msdn.microsoft.com/en-us/library/aa479318.aspx " & " http://www.nathanblevins.com/blog/2008/06/09/compile-a-web-user-control-into-a-dll-net-c/ " and they are following exactly same steps as I do but may be there is something that I am missing?

0

There are 0 best solutions below