zimcoder Level: VB Lord

 Registered: 27-10-2003 Posts: 225
|
Re: How to include dynamic html file into aspx page?
If need be change your dhtml file and implement the functionality in a user control. User control pages have the extension ascx. You save your page that has the functionality as a user control and you can include it in your page as follows:
<%@ Register TagPrefix="uc1" TagName="YourUserControl" Src="YourUserControl.ascx" %>
This should work
I hope your problem will be solved
____________________________
BrainBench ADO.NET and ASP.NET Certified Developer
 
|