您可以使用ASP.NET的Web Forms来实现带有菜单的主页和包含数据输入表单的内容页。下面是一个简单的示例代码:
主页(Default.aspx):
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
ASP.NET 主页
内容页(ContentPage.aspx):
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ContentPage.aspx.cs" Inherits="WebApplication1.ContentPage" %>
ASP.NET 内容页
主页代码后台(Default.aspx.cs):
using System;
using System.Web.UI;
namespace WebApplication1
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
内容页代码后台(ContentPage.aspx.cs):
using System;
using System.Web.UI;
namespace WebApplication1
{
public partial class ContentPage : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
string name = txtName.Text; // 获取输入的姓名
// 处理表单数据,如保存到数据库等操作
}
}
}
这是一个简单的示例,您可以根据实际需求进行修改和扩展。