ASP.NET: Grid confirm delete
Merke: Um das Löschen eines Eintrags in einem GridView-Control bestätigen zu lassen, müssen vorher unter Edit Columns alle CommandField-Elemente manuell zum GridView hinzugefügt werden und danach das...
View ArticleASP.NET: local ReportViewer
Der lokale ReportViewer und die Verwendung von Parametern Mit Visual Studio 2005 sowie Web Developer Express Studio wird das ReportViewer-Control mitgeliefert. Dieses Steuerelement kann in...
View ArticleRegular Expressions Library
Unter http://regexlib.com findet man eine sehr nette Sammlung an Regular Expressions. Möchte man beispielsweise ein Eingabefeld eines Formulars mit Regular Expressions validieren kann das mit...
View ArticleReports mit ASP.NET und SQL Server 2005: One or more rows contain values...
Der Fehler “An error has occurred during report processing. Exception has been thrown by the target of an invocation. Failed to enable constraints. One or more rows contain values violating non-null,...
View ArticleASP.NET not working after IIS Installation
After installing IIS the ASP.NET setup has to be started by using following command: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i
View ArticleInitiate SSIS packages from ASP.NET Web Applications
In order to start SSIS packages from ASP.NET web applications you can use a Web Service. Following page shows how to implement this: Running packages programmatically on the server by using a Web...
View ArticleGridView: FindControl in Template
Um ein erfolgreiches FindControl in einem EditItemTemplate umzusetzen, sollte folgender Code verwendet werden. In diesem Beispiel wird in einem GridView in einer editierbaren Zeile einer Textbox ein...
View Article.Net-Snippets
Unter .Net-Snippets findet man recht gute Lösungen. Sollte man immer mal besuchen, wenn man vor einem Problemchen steht. Außerdem gibt es noch ein nettes Firefox-Search-Plugin zur schnellen Suche.
View ArticleReportViewer: Pass Parameters to Remote Report
How to pass parameters to ReportViewer Control displaying a remote report (SSRS): ReportParameter[] parameters = new ReportParameter[2]; protected void Page_Load(object sender, EventArgs e) {...
View ArticleReportViewer: Display Remote Report (SSRS)
ReportPath="/CPA_DWH_ASP_REPORTS/MPCSurvey_Plausibility" ReportServerUrl="http://53.71.217.43/ReportServer
View ArticleMSB4019: WebApplication.targets not found
Der Fehler MSB4019: The imported project “C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\WebApplications\Microsoft.WebApplication.targets” was not found. konnte bei mir wie folgt behoben werden:...
View Article