ASP.NET点击页面内容出现文本框
ASP.NET点击页面的”创建项目“几个字,弹出一个文本框的窗口让你输入相关信息后,点文本框上的保存按钮,保存到服务器的数据库里。...
ASP.NET点击页面的”创建项目“几个字,弹出一个文本框的窗口让你输入相关信息后,点文本框上的保存按钮,保存到服务器的数据库里。
展开
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function show() {
document.getElementById("Create").style.display = "none" ? "block" : "none";
document.getElementById("Muen").style.display = "block" ? "none" : "block";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div onclick="show();" id="Muen" style="display:block" >
创建项目
</div>
<div style="display:none" id="Create">
<asp:TextBox ID="txtContext" runat="server"></asp:TextBox>
<asp:Button ID="btnSava" runat="server" OnClientClick="show();" Text="保存" />
</div>
</form>
</body>
</html>
<head runat="server">
<title></title>
<script type="text/javascript">
function show() {
document.getElementById("Create").style.display = "none" ? "block" : "none";
document.getElementById("Muen").style.display = "block" ? "none" : "block";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div onclick="show();" id="Muen" style="display:block" >
创建项目
</div>
<div style="display:none" id="Create">
<asp:TextBox ID="txtContext" runat="server"></asp:TextBox>
<asp:Button ID="btnSava" runat="server" OnClientClick="show();" Text="保存" />
</div>
</form>
</body>
</html>
更多追问追答
追问
点击创建项目后会在当前页面弹出一个可编辑的窗口,点保存按钮后会保存到数据库中
追答
保存数据的话你就添加按钮事件,然后连接数据库写输入数据就好了呀
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询