我有以下字符串:
for(#some conditions){
##
result += "<tr><td>" + dc + "</td><td>" + al + "</td><tr>";
}
dc
现在,我想al
在我的 HTML 输入文本区域中使用aspx:grid
.
例如结果的值为:
result = <tr><td>1111</td><td>23</td><td><tr><td>22222</td><td>43</td><tr>
现在我想使用以下格式显示数据grid
dc al
1111 23
222222 43
现在,我正在使用以下命令填充文本区域。
<script type = "text/javascript">
function submit_a()
{
$.post("../AllocationValidator.aspx", { "data": escape(validatorXML), "scenarioID": scenarioID }, function (result) {
alert("Data Saved!");
$("#allocations").empty();
$("#allocations").html(result);
BodyLoad();
});
}
</script>
<div id = "allocations" style = "width: 650px; padding: 10px; border: 1px solid black;height: 150px; overflow:scroll;"></div>
我的问题是如何实现asp:grid
显示数据?