Control.TemplateSourceDirectory Vlastnost

Definice

Získá virtuální adresář aktuálního Page ovládacího prvku serveru nebo UserControl obsahuje aktuální serverový ovládací prvek.

public:
 virtual property System::String ^ TemplateSourceDirectory { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual string TemplateSourceDirectory { get; }
[<System.ComponentModel.Browsable(false)>]
member this.TemplateSourceDirectory : string
Public Overridable ReadOnly Property TemplateSourceDirectory As String

Hodnota vlastnosti

String

Virtuální adresář stránky nebo uživatelského ovládacího prvku, který obsahuje ovládací prvek serveru.

Atributy

Příklady

Následující příklad používá vlastnost TemplateSourceDirectory dvakrát. Při prvním použití ve Control.MapPathSecure volání metody získat cestu k adresáři, ve kterém se ovládací prvek nachází. Při druhém Directory.GetFiles volání metody získáte seznam všech souborů obsažených v tomto adresáři.

// An HttpException occurs if the server control does not,;
// have permissions to read the resulting mapped file. 
     output.Write("The Actual Path of the virtual directory : "+
     MapPathSecure(TemplateSourceDirectory)+"<br>");

    // Get all the files from the absolute path of 'MyControl';
    // using TemplateSourceDirectory which gives the virtual Directory.
        string [] myFiles=
        Directory.GetFiles(MapPathSecure(TemplateSourceDirectory));
        output.Write("The files in this Directory are <br>");

         // List all the files.
         for (int i=0;i<myFiles.Length;i++)
            output.Write(myFiles[i]+"<br>");
' An HttpException occurs if the server control does not,;
' have permissions to read the resulting mapped file.
output.Write("The Actual Path of the virtual directory : " & _
            MapPathSecure(TemplateSourceDirectory) & "<br>")

' Get all the files from the absolute path of 'MyControl';
' using TemplateSourceDirectory which gives the virtual Directory.
Dim myFiles As String() = Directory.GetFiles(MapPathSecure(TemplateSourceDirectory))
output.Write("The files in this Directory are <br>")

' List all the files.
Dim i As Integer
For i = 0 To myFiles.Length - 1
   output.Write(myFiles(i) & "<br>")
Next i

Poznámky

Vlastnost TemplateSourceDirectory určuje cestu k stránce nebo uživatelskému ovládacímu prvku, který obsahuje aktuální ovládací prvek. Například pokud se webová stránka nachází na http://www.contoso.com/application/subdirectory, TemplateSourceDirectory vrátí vlastnost "application/podadresář".

Pokud chcete vrátit virtuální cestu relativní k aplikaci ("~/podadresář"), použijte AppRelativeTemplateSourceDirectory vlastnost.

Platí pro

Viz také