Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新しいファイルを保存するためにアプリケーションのパスを要求しようとしていますが、次のようにする必要があります。
Dim mypath As String = Request.PhysicalApplicationPath
しかし、何らかの理由で Request クラスさえ見つかりません。
System.Web 名前空間に属しているのを読みましたが、追加しましたが、まだ機能していません。何か案は?
Server.MapPath("~/logfiles")Webページがあるディレクトリ内のサブディレクトリログファイルのパスを取得するために使用できます。
Server.MapPath("~/logfiles")
これは実際のASP.NETWebページにありますか、それともハンドラーにありますか?
編集
別の方法は使用することですPath.Combine(HttpRuntime.AppDomainAppPath, "logfiles")
Path.Combine(HttpRuntime.AppDomainAppPath, "logfiles")