Lange habe ich gesucht und nun habe ich einen gefunden.
Der bxslider für jquery ist optimal um verschiedene Html Objekte herumzusliden.
Hier ein paar Informationen auf Englisch:
horizontal, vertical, and fade transitions
display and move multiple slides at once (carousel)
prev / next, pager, auto controls
easing transitions
random start
ticker mode
before, after, first, last, next, prev callback functions
optional styling included
TONS of options,
Solltet ihr einen Slider suchen, dann probiert auf jedem Fall zuerst diesen aus.
bxSlider
weiterlesen
Natürlich wie kanns auch anders sein, erkennt der Internet Explorer 8 das Html5 Attribute <footer> nicht.
Hier hilft nicht einmal mehr ein display:block;
Es gibt jedoch eine einfache Lösung:
Fügt folgenden Javascript Code oberhalb euren <footer> Attributes ein.
document.createElement('footer');
Und schon funktioniert auch das Footer Attribut im IE8. Unter der Vorraussetzung natürlich, dass Javascript aktiviert ist.
weiterlesen
Derzeit beschäftige ich mich ein wenig mit dem SQL-Server 2008 und wollte einen ganz simple Geschichte machen: Eine bestehende Tabelle ein wenig anpassen. Beim Speichern der Daten kam aber vom Microsoft SQL Server Management Studio immer die Meldung, dass die Tabelle nicht gespeichert werden kann - mit dem Kommentar: "Speichern von Änderungen verhindern, die die Neuerstellungder Tabelle erfordern"
Die Lösung dafür ist eigentlich recht simple: Man öffnet im SQL Server Managementstudio den Menüpunkt Extras -> Optionen; geht dann in den Bereich Designer -> Tabellen-...
weiterlesen
If you are using MsSQL, you might have noticed an abnormal growth of your ldf file. I will explain in this article the principle of the transaction log file, and how to limit its growth.
Whenever a data update is made in the database, entries are added to the transaction log (ldf file). It is not possible to prevent this as it is part of the way Microsoft SQL server maintains integrity – particularly during recovery.
The transaction log is a circular file; when the end is reached any free entries at the start will be used. This means that all being well, the file will stay at a constant...
weiterlesen
Folgende Anleitung funktioniert:
httpv://www.youtube.com/watch?v=pCMouuiRrqw
weiterlesen
If N2CMS throws at the first request an 404 error change this in your IIS.
Solution: Go to Error Pages -> Edit Feature Setting -> Select Detailed errors
weiterlesen
From http://msmvps.com/blogs/omar/archive/2006/08/20/108307.aspx
Omar AL Zabir, Many Variety of Posts (MVP)
Forms authentication failed for the request. Reason: The ticket supplied was invalid. (Solution)
When you turn on web garden (multiple process per application pool) or go into multi server load balance deployment where servers are serving the same website, you will have Forms Authentication problem. Users will get automatically logged out or see the Yellow screen of death (ASP.NET error page) frequently. This happens because ASP.NET encrypts the login information in cookie. But the encryption...
weiterlesen
Problem: Singe Quote ' in Mysql escapen.
Lösung: '' also zwei Single Quotes
weiterlesen
Here can you find different airplanes and rotorcrafts for the Microsoft Flight Simulator X for free.
F16 - Aerosoft
Here are different Pages with downloads.
http://www.fsdownload.com
http://www.aerosoft.de
weiterlesen
Mit Jquery lässt wieder einmal das CSS so programmieren, damit es wenn es am oberen Ende des Browsers angelangt ist mit dem Scrollbalken mitläuft.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script>
$(function () {
�
var msie6 = $.browser == 'msie' && $.browser.version < 7;
�
if (!msie6) {
var top = $('#comment').offset().top - parseFloat($('#comment').css('margin-top').replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
...
weiterlesen