Hi All,
I'm trying to implement MVC pattern (Note: not by using ASP.net MVC framework). I'm not able to do view selection based on http request processing.I have added custom tag in web.config for URL mapping like this:
<controller.mapping> <entries> <entry key="/view/ActualPage1.aspx" url="ActualPage1.aspx" /> <entry key="/view/ActualPage2.aspx" url="ActualPage2.aspx" /> </entries> </controller.mapping>
<controller.mapping>
<entries>
<entry key="/view/ActualPage1.aspx" url="ActualPage1.aspx" />
<entry key="/view/ActualPage2.aspx" url="ActualPage2.aspx" />
</entries>
</controller.mapping>
But, I'm getting the following error.
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Unrecognized configuration section controller.mapping.
Please help me on this....
Thanks
Venkatesha