V
vbMark
From the URL Query String I'll get the file path like this:
private void Page_Load(object sender, System.EventArgs e)
{
string sFilePath = Request.QueryString["FilePath"];
}
Now that I have the path how do I upload the file to the server?
Thanks!
private void Page_Load(object sender, System.EventArgs e)
{
string sFilePath = Request.QueryString["FilePath"];
}
Now that I have the path how do I upload the file to the server?
Thanks!