AccessDataSource.ProviderName Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nom du fournisseur de données .NET que le contrôle AccessDataSource utilise pour se connecter à une base de données Microsoft Access.
public:
virtual property System::String ^ ProviderName { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public override string ProviderName { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.ProviderName : string with get, set
Public Overrides Property ProviderName As String
Valeur de propriété
Chaîne « System.Data.OleDb ».
- Attributs
Exceptions
Une tentative de définition de la propriété ProviderName a été effectuée.
Exemples
L’exemple de code suivant montre comment afficher la ProviderName propriété du AccessDataSource contrôle dans une page Web Forms.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
private void Page_Load(Object sender, EventArgs e) {
Label1.Text = AccessDataSource1.ProviderName;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:AccessDataSource
id="AccessDataSource1"
runat="server"
DataFile="Northwind.mdb">
</asp:AccessDataSource>
<asp:Label
id="Label1"
runat="server">
</asp:Label>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Label1.Text = AccessDataSource1.ProviderName
End Sub 'Page_Load
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:AccessDataSource
id="AccessDataSource1"
runat="server"
DataFile="Northwind.mdb">
</asp:AccessDataSource>
<asp:Label
id="Label1"
runat="server">
</asp:Label>
</form>
</body>
</html>
Remarques
Bien que le AccessDataSource contrôle expose la ProviderName propriété, car elle est héritée de sa classe de base, la tentative de définition de la ProviderName propriété entraîne une NotSupportedException exception.