asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

ASP.NET 中在指定的位置处插入字符


发布日期:2022年12月13日
 
ASP.NET 中在指定的位置处插入字符

这是论坛中的一个问题很多人经常会遇到就贴出来

完整代码如下实现在光标处插入上传后的文件名

〈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

上一篇:ASP.NET MVC RC 的一些变化

下一篇:如何用在ASP.NET中写入事件日志