這是論壇中的一個問題很多人經常會遇到就貼出來
完整代碼如下實現在光標處插入上傳後的文件名
〈script runat=
server
>
protected void Page_Load(object sender
EventArgs e)
{
TextBox
Attributes
Add(
onclick
getCursor(
+ TextBox
ClientID +
+ Hidden
ClientID +
);
);
}
protected void Button
_Click(object sender
EventArgs e)
{
string fileName = FileUpload
FileName;
//保存文件省略
int pos =
;
Int
TryParse(Hidden
Value
out pos);
TextBox
Text = TextBox
Text
Insert(pos
fileName);
}
script>
DOCTYPE html PUBLIC
//W
C//DTD XHTML
Transitional//EN
http://www
w
org/TR/xhtml
/DTD/xhtml
transitional
dtd
>
〈html xmlns=
http://www
w
org/
/xhtml
>
〈head runat=
server
>
〈title>ASP
NET 中在指定的位置處插入字符title>
〈script type=
text/javascript
>
function getCursor(param
param
)
{
var pos =
;
var t = document
getElementById(param
);
if
From:http://tw.wingwit.com/Article/program/net/201311/15438.html