Hi,
I am trying out some code which enables me in creating a page with extension .asp2
The tags included will also be custom, something like:
<asp2:H>
<asp2:T>
First Page
</asp2:T>
</asp2:H>
<asp2:B>
<asp2:D>
<asp2:Label>Welcome......</asp2:Label>
</asp2:D>
</asp2:B>
I have done the necessary changes so that ASP.NET identifies the extension. I have also kept a mapping of custom tags and asp.net/html tags with myself. With this I am able to render the page on browser. But how can we do event handling(usually done by page postbacks and code) in such a scenario???
Please suggest