关于动态添加控件
为了实现在页面上动态添加上传文件的控件,前台代码如下:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" EnableViewState="true" %>
<!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>
<script type="text/javascript">
function Add()
{
document.getElementById("a").innerHTML="继续添加";
var tb=document.getElementById("Table");
newRow=tb.insertRow();
newRow.insertCell().innerHTML="<input type='file' name='File' contenteditable='false'>";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table id="Table">
</table>
<table width="100%">
<tr>
<a id="a" href="javascript:;" onclick="Add()">添加</a>
</tr>
</table>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
</div>
</form>
</body>
</html>
以上代码可以实现添加功能,但在后台使用Request.Files[i]对控件操作时无法找到控件(Request.Files.Count=0)
请大家帮我改下或者提供些新的方法 --------------------编程问答-------------------- 忘给帖子加分了 明天加~
补充:.NET技术 , .NET Framework