Abstract: " One of the touted benefits of CSS is that it reduces total page weight, and thus download time, both at first page load, and even more on subsequent loads due to style sheet caching. This is true, but often a sizable fraction of the first load savings is lost because of highly redundant CSS code. Well that's all over. Now you will learn some "secrets" of efficient CSS coding, enabling you to pare that style sheet right down to the bare bones. To be sure, you won't achieve huge savings doing this, but for some highly competitive sites every little bit counts."
Writing Efficient CSS
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Abstract: "Use ASP.NET and a generic XSL file to convert any XML data into an Excel spreadsheet. This generic XSL can be used to present XML reports to users in Excel via their web browser. The XML data actually gets converted to an Excel XML spreadsheet, and for that reason Excel 2002/2003 is required on the client. Once the data has been converted it can be saved, on the client, as an Excel Spreadsheet or opened in the client's web browser."
Convert XML To an Excel Spreadsheet Using XSL
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Abstract: "This document roadmap summarizes the solutions presented in Improving Web Application Security: Threats and Countermeasures. It provides links to the appropriate material in the guide so that you can easily locate the information you need and find solutions to specific problems."
Improving Web Application Security: Threats and Countermeasures
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Abstract: "Enterprise Library is a major new release of the patterns & practices Application Blocks, which are reusable software components designed to assist developers with common enterprise development challenges. Enterprise Library 1.0 will include blocks for Data Access, Exception Handling, Caching, Configuration, Logging & Instrumentation, Security and Cryptography, in a single integrated download. The Library will feature improved consistency, extensibility, integration and ease of use, and will include a GUI-based configuration editing tool, generally eliminating the need to hand-edit XML configuration files for the blocks. This workspace provides a forum for the community to discuss Enterprise Library, review prerelease materials and provide suggestions for upcoming versions."
patterns & practices: Enterprise Library: Home
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Abstract: "Mitte des Jahres wird ein weiterer Bestandteil der Trustworthy Computing Initiative erscheinen: Das Service Pack 2 für Windows XP. Dieses Service Pack wird neben den üblichen Sicherheitsupdates und Bugfixes zusätzliche neue Technologien mit sich bringen, die dem Benutzer mehr Sicherheit zur Verfügung stellen. Technologien wie Windows Firewall, No Execute, Sicherheit im Web und Email-Sicherheit stehen hier im Fokus. Damit sich Entwickler vorab über die Neuerungen und Änderungen zum Windows XP Service Pack 2 informieren können, haben wir hier die wichtigsten Artikel, Webcasts und Online Trainings zusammengestellt."
Windows XP Service Pack 2 - Web-Guide zu den wichtigsten Info-Quellen für Entwickler
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Frage in der ASP.NET-Mailingliste: Wie füge ich Attribute (OnLoad etc.) programmatisch zum Body-Tag einer Seite hinzu?
Lösung:
.aspx:
<body ID="myBody" runat="server">
.aspx.cs:
HtmlGenericControl myBody = new HtmlGenericControl;
...
myBody.Attributes.Add("onLoad","DoSomething();");
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Verwendet man Mozilla FireFox als Standard-Browser und Outlook 2003 für den Mailverkehr, so öffnet sich beim Klick auf einen Link in einer Mail ein Dateiauswahldialog, der nach einer .exe sucht (für den Browser). Gleichzeitig öffnet sich aber bereits der FireFox.
Weist man Outlook 2003 die .exe von FireFox tatsächlich zu, öffnet sich FireFox ab sofort 2 mal beim Klick auf einen Link.
Umgehen kann man das wie folgt:
Im Arbeitsplatz:
Extras - Ordneroptionen - Dateitypen:
"URL:HTTP (HyperText Transfer-Protokoll)" (steht ziemlich am Anfang der Liste) - Erweitert - "open" bearbeiten - bei "DDE verwenden" den Haken raus.
Das gleiche Spiel für "URL:HTTP (HyperText Transfer-Protokoll) mit Sicherheitssystem" (steht direkt drunter).
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Da ich mich zur Zeit mit XML in .NET befasse, bin ich auf folgende Tipps in Daniel Cazzulino's Blog gestoßen:
Roadmap to high performance XML (in .NET - eh klar ;-) )
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Im September (13. - 24.) besteht die Möglichkeit, für ca. 1.800 EUR einen kompletten MCAD-Lehrgang inkl. Zertifizierung und Lernmaterial in Wien bei Peter Koen zu besuchen.
Der reguläre Preis liegt bei über 6.000 EUR. Wer nicht zugreift, ist selbst schuld ;-) Wer Interesse an der Zertifizierung hat, sendet einfach eine Mail an
koen@no-spam.kema.at (das "no-spam." ist zu löschen)
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Der SharpDevelop C# Coding Style Guide erfreut sich großes Beliebtheit und Anwendung. Eine Hürde auf dem Weg dorthin mit Visual Studio .NET ist, dass Visual Studio .NET folgende Klammerung anwendet:
public string Title
{
get
{
return _title;
}
set
{
_title = value;
}
}
Der Coding Style Guide sieht jedoch folgende Klammerung vor:
public string Title {
get {
return _title;
}
set {
_title = value;
}
}
Folgende Option in Visual Studio .NET ermöglicht es, die Klammerung gemäß des Guides umzusetzen:

Danke an Lars Berner für den Tipp.
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5