Hi All,
1. Does <frameset> tag work in asp.net application? I had a simple 3 page application with <frame>, it seems to work only in the development server. Is it a good idea not to use <frameset> and use <iframe> instead?

2. Can i include <asp:button> etc tags in the <script>?
For example
Code:
<script language="c# " runat="server">
void myfunction(){
Response.Write("<asp:hyperlink Navigateurl='two.aspx' target='frametwo' runat='server'></asp:hyperlink>



}
is this valid?

3. Is it acceptable to include runat="server" in any html tag?

Thanks for your help.