Hi
What the mean of " copy a form into a master page ", How do you want to "Copy"? Could you please give more deatils about your idea?
kate1:
Can you use forms (text box, drop down, grids) in the content of a master page? Also where can I find asp templates?
Do you want to use mulity forms?
In fact, you can use more than one forms in the pages, include the master page and the content page.
For example:
1.The master page aspx code:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage_MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</div>
</form>
</body>
</html>
2. the content page;
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" Title="Untitled Page" %><
asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<form><
asp:Button ID="bnrtn" Text="Button" runat=server />
</form>
</
asp:Content>
If misunderstand you, please let me know.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Yours sincerely,
Amanda Wang
Microsoft Online Community Support