WebQuery türü Dış Veri Bağlantısı ile çalışma
Contents
[
Hide
]
Workbook.DataConnections koleksiyonunu kullanarak her türden harici veri bağlantısına erişebilirsiniz. Bu tür veri bağlantılarından biri WebQuery’dir. Bu makale size WebQuery veri bağlantısıyla nasıl çalışacağınızı gösterecektir. Microsoft Excel’de WebQuery veri bağlantısını kullanarak oluşturabilirsiniz.Veri > Web’den Menü.
WebQuery türü Dış Veri Bağlantısı ile çalışma
Aşağıdaki kod, harici veri bağlantısı türüyle nasıl çalışılacağını gösterir.Web sorgusu . Bu kullanırörnek excel dosyası verilen bağlantıdan indirebilirsiniz. Aşağıda bu kodun konsol çıktısını da görebilirsiniz.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
Workbook workbook = new Workbook(dataDir + "WebQuerySample.xlsx"); | |
ExternalConnection connection = workbook.DataConnections[0]; | |
if (connection is WebQueryConnection) | |
{ | |
WebQueryConnection webQuery = (WebQueryConnection)connection; | |
Console.WriteLine("Web Query URL: " + webQuery.Url); | |
} |
Konsol Çıkışı
İşte bununla yukarıdaki kodun konsol çıktısıörnek excel dosyası.
Web Query URL: https://docs.aspose.com/cells/net/