我必须将上传的文档保存到另一台本地机器中。但我不清楚如何在我的代码中使用模拟。
我使用了以下代码。
protected void btnSave_Click(object sender, EventArgs e)
{
int result = 0,result1=0;
string attachmentpath = "C:\\Documents and Settings\\pr84528\\My Documents\\PRABU\\Tech\\Dot Net\\DocumentManager\\Attachments\\";
....................................................................................
....................................................................................
if(fuDocument.HasFile)
fuDocument.SaveAs(attachmentpath + fuDocument.FileName);
....................................................................................
....................................................................................
}