string FileTxt="11111111111111";
string f="123";
string regpath = System.IO.Path.GetTempPath() + f + ".txt";
        using (StreamWriter sw = File.CreateText(regpath))
        {
            sw.Write(FileTxt);
        }
        Response.Write(regpath);
我在页面上运行时,它建立的临时文件是在服务器上,怎么才可以建立在本地客户要上呀?