in

ASP.NET Weblogs

This Blog

Syndication

Tags

ASP.NET Deutsch Blogs

Browse by Tags

All Tags » HTML (RSS)
  • Search Engine Optimization (SEO) for Ajax, Silverlight and Flash

    Nikhil Kothari wrote an interesting article about SEO for Ajax and Silverlight Applications a year ago. SEO works perfectly well for static content but fails for RIAs (Rich Interactice Applications) where “the HTML page simply becomes a shell containing presentation and behavior, and doesn't contain the meaningful data that needs to be indexed” . Therefore his idea is “to serve up a page that is search engine friendly without trying to detect a search engine crawler on the server, and without maintaining a parallel static version of the page” . Since he wrote this article that long ago I was wondering whether it would still apply and here is what Nikhil replied: I’ve had some discussions with folks from the...
  • CSS: 100% Höhe bei DIVs

    Hin und wieder kommt es vor, dass DIV Elemente 100% hoch sein müssen. Wozu benötigt man 100% hohe DIV Elemente? Oftmals werden Websites so gestaltet, dass sie 100% der Höhe des Browserfensters ausnutzen sollen. In den Zeiten von AJAX und Web 2.0 sollen immer öfter DHTML Fensterchen aufgehen und der Rest der Seite ausgegraut werden. Wenn man beachtet, wie eine HTML Seite aufgebaut ist, ist es eigentlich recht einfach. Gegeben ist folgendes HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns ="http://www.w3.org/1999/xhtml" > < head > < title > Untitled Page </ title > < link href ="styles...
  • An einem GET Formular feststehende Werte mitgeben

    Typisches Beispiel, ein Suchformular. Dieses sollte per GET (method="get") abgeschickt werden, um das Suchergebnis auch Linken zu können. Wenn die Seite jetzt aber noch auf zusätzliche Parameter angewiesen ist, können die feststehenden Parameter nicht einfach an die Url im "action" Attribut des Formulars angehängt werden, weil diese überschrieben werden. D.h. bei sowas: < form name ="myForm" action ="suche.aspx?param1=value1" method ="get" > ... </ form > Geht der Parameter "param1" ins Nirvana. Um sowas trotzdem zu erreichen, kann ein dieser Wert in ein HiddenField _innerhalb_ des jeweiligen Formulars platziert werden. Bspw. so: < form name ="myForm" action...
  • Various Cheat Sheets (.NET, SQL Server, ASP.NET Ajax, CSS, JavaScript, RegEx, ...) - Free Download

    Following is a list of cheat sheets I found over time... Feel free to post additional links if you have other cheat sheets. .NET Framework .NET Framework 2 0 Poster .NET Framework 3.5 Common Namespaces and Types Poster .NET Format String Quick Reference C# Visual Studio 2005 Built-in Code Snippets (C#) Visual Studio 2005 C# Code Snippets on msdn Web Development Microsoft® Silverlight™ 1.1 Alpha Developer Reference Poster ASP.NET 2.0 Page Life Cycle & Common Events http://john-sheehan.com/blog/wp-content/uploads/aspnet-life-cycles-events.pdf http://blog.krisvandermast.com/content/binary/ASP.NET-2.0-life-cycle.png Microsoft ASP.NET Ajax Cheat Sheets HTML Character Entities CSS Cheat Sheet JavaScript Cheat Sheet XHTML, Cheat Sheet...
  • Beliebige Html Elemente als Anker verwenden

    Gut zu wissen: Als seiteninterne Anker Verweise kann jedes Html Element angesteuert werden. Bspw: < h1 id ="title7" > Title 7 </ h1 > [...] Über die Verlinkung oder die direkte Eingabe in der Adressleiste des Browsers, wird direkt zum Element...( read more ) Read More...
  • Browser requirements for AJAX

    AJAX is an acronym that covers many things. Generally, IE 5.5+ had some capabilities that can be considered AJAX capabilities, and Firefox 1.x also had some (native support for XHR object, for example). The minimum requirements for basic AJAX functionality is IE5+ for Windows, Firefox 1+, Mozilla 1+, Safari 1.2+, Opera 7.6+. Microsoft support details for ASP.NET AJAX technology that can be found at http://www.asp.net/AJAX/Documentation/Live/BrowserCompatibilityForASPNETAJAX.aspx . HTHs Daniel Read More...
  • Some HTML Editors for ASP.NET...

    The following are some HTML Editors for ASP.NET providing "Rich Text box" functionality and are definitely worth a try. FreeTextBox FCKEditor TinyMCE This list is by no means complete. There are a couple of other Rich Text editors on the ASP.net control gallery like the Telerik RadEditor . Be sure not to miss them! If you favor other editors just drop a line in the comments. Thanks! Cheers! Daniel Read More...
More Posts