做一个简单的单文档试图的程序为其中的DOC添加虚函数OnOpenDocument(LPCTSTR lpszPathName) 
{
if (!CDocument::OnOpenDocument(lpszPathName))
return FALSE;

// TODO: Add your specialized creation code here

return TRUE;
}然后在其中设置短点,调试运行,点击程序的文件-打开,然后在在“打开”对话框的文件名处输入一个网络文件的地址
例如 http://ww.sohu.com/1.txt
跟踪进去,发现lpszPathName的值是 C:\Documents and Settings\administrator\Local Settings\Temporary Internet Files\....\1.txt请问为什么会是这样的,谢谢