请问在C#里面 我想在点击textbox之后弹出listbox选择数据,然后选择的数据返回到textbox中,这样应该怎样写
展开全部
onclick="SelectListBox()"
function SelectListBox()
{
var url = "选择数据的URL地址";
var strRtn = window.showModalDialog(url , "", "dialogWidth:400px; dialogHeight:400px; dialogLeft: status:no; directories:yes;scrollbars:yes;Resizable=no;");
if (strRtn != "")
{
document.getElementById("textbox").value == ""
}
}
在ListBox选择数据页面中调用
function retVal(Rval)
{
window.returnValue= Rval;
window.close();
}
function SelectListBox()
{
var url = "选择数据的URL地址";
var strRtn = window.showModalDialog(url , "", "dialogWidth:400px; dialogHeight:400px; dialogLeft: status:no; directories:yes;scrollbars:yes;Resizable=no;");
if (strRtn != "")
{
document.getElementById("textbox").value == ""
}
}
在ListBox选择数据页面中调用
function retVal(Rval)
{
window.returnValue= Rval;
window.close();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询