My project and user control on an ASP page?

I create a custom control in C # as follows:

http://s000.tinyupload.com/?file_id=55475405211482553976

I need to use this on an ASP.NET page, but I could not do this. Is there any idea to use this control on an ASP page?

+7
c # asp.net-mvc user-controls
source share
1 answer

Just put the ASP pages on your html page:

<iframe id="myIframe" src="your-aspx-page.aspx" height="100%" width="100%"> 

You just need to write the correct path to the src attribute.

First make sure the .aspx page works fine (just open your page in a browser) and then the iframe tag should do all the work on the download page on your asp page.

+1
source share

All Articles