求救 .net 高手!
本人新手 在做一个类似订单的功能 本人在一个子页面里用<%#Eval("GoodsCode")%>绑定数据值 在另外一个页面 通过弹出窗体 双击 将值显示在已选中消费目录 已实现 但是后台如何取值呢???我搞了几天一直搞不出来!!!本人菜鸟级 !对于JS方面基本算文盲 最好能发点能实现的代码 看看 谢谢了这是母窗体获得值
function add()
{
tr=document.all.tb1.insertRow()
tr.style.height=25;
document.all.intK.value=parseInt(document.all.intK.value) + 1;
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="GoodsCode'+document.all.intK.value+'">'
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="GoodsName'+document.all.intK.value+'">'
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="GoodsTypeCode'+document.all.intK.value+'">'
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="OutPrice'+document.all.intK.value+'">'
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="BarCode'+document.all.intK.value+'">'
tr.insertCell().innerHTML='<input style=width:100%;border:0px;readonly type=text id="Remark'+document.all.intK.value+'">'
这是子窗体 将值导入过去
function selectgoods(){
var obj = event.srcElement;
var tab=document.getElementById('table1');
if(obj.tagName != "TR")
obj = obj.parentElement;
self.opener.add();
self.opener.document.all('GoodsCode'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[0].innerText
self.opener.document.all('GoodsName'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[1].innerText
self.opener.document.all('GoodsTypeCode'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[2].innerText
self.opener.document.all('OutPrice'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[3].innerText
self.opener.document.all('BarCode'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[4].innerText
self.opener.document.all('Remark'+self.opener.document.all.intK.value).value = tab.rows[obj.rowIndex].cells[5].innerText
tab.deleteRow(obj.rowIndex);
}
我现在就是一直都是后台 不知道如何能取到值的问题 烦! 后台娶不到值 就别提 增删改操作了 本人菜鸟级 希望各位大哥 大侠们 帮帮忙 JS方面 文盲级 最好能发点实例代码 (可以实现的) 别说理论了。。。。我都说了 我算文盲 说了也不明白 就后台能看懂 前台 基本的都不知道。。。。AJAX 什么的 就更不懂了 想自学 谢谢大家乐 --------------------编程问答-------------------- --------------------编程问答-------------------- 页面传值
http://topic.csdn.net/u/20100330/11/ad7be2fe-f243-48f5-8090-3d0ea4d9ca65.html --------------------编程问答-------------------- 你娶不到值而已,我在为娶不到老婆上火 --------------------编程问答-------------------- 呵呵,娶不到老婆确实上火啊。同感! --------------------编程问答-------------------- --------------------编程问答--------------------
补充:.NET技术 , VB.NET