这是论坛中的一个问题很多人经常会遇到就贴出来
完整代码如下实现在光标处插入上传后的文件名
〈script runat=
server
>
protected void Page_Load(object sender EventArgs e)
{
TextBoxAttributesAdd(onclick getCursor( + TextBoxClientID + + HiddenClientID + ););
}
protected void Button_Click(object sender EventArgs e)
{
string fileName = FileUploadFileName;
//保存文件省略
int pos = ;
IntTryParse(HiddenValue out pos);
TextBoxText = TextBoxTextInsert(pos fileName);
}
script>
DOCTYPE html PUBLIC //WC//DTD XHTML Transitional//EN http://wwwworg/TR/xhtml/DTD/xhtmltransitionaldtd>
〈html xmlns=http://wwwworg//xhtml>
〈head runat=server>
〈title>ASPNET 中在指定的位置处插入字符title>
〈script type=text/javascript>
function getCursor(paramparam)
{
var pos = ;
var t = documentgetElementById(param);
if