ASP.MVC and IFrame [closed]
How to make asp.mvc work in iframe ? (for example i have simple page : silverlight menu and iframe ) .I know how to change iframe src from silverlight but I dont know how to make asp.mvc work in that iframe. Thanks for help
You could point the iframe source to your ASP.NET MVC application:
<iframe src="http://foo.com/yourmvcapp/home/index"></iframe>
精彩评论