Err.exe

Tired of error numbers that doesn’t mean a thing 🙁 ? Download the free Err.exe tool that can turn a meaningless error number into a message, it does not mean you get to know why error occurred, but sometimes ANY clue is better than nothing :).

Bindable control property – The server tag is not well formed

When I was doing my first ASP.NET I spend a lot of time looking for clue why statement like this one: Text=”” … did not work, and caused an „all telling” exception: System.Web.HttpException: The server tag is not well formed.

DataFormatString=”{0:yyyy-MM-dd}”

Wyjaśnienie dlaczego nie działa formatowanie daty w np. asp:BoundField, bo data jest HtmlEncoded zanim zostanie podstawiona do formatu. Więc zawsze połączeniu z formatem należy użyć HtmlEncode, przykład: <asp:BoundField HeaderText=”Data” DataField=”OrderDate” DataFormatString=”{0:yyyy-MM-dd}” HtmlEncode=”false”/>

Wikimedia – Serwer nie może przetworzyć tej edycji

Po zainstalowaniu programu Mediawiki w miałem problem z edycją stron i preferencji, nic się nie zapisywało a komunikat brzmiał: Przepraszamy! Serwer nie może przetworzyć tej edycji z powodu utraty danych sesji. Spróbuj jeszcze raz; jeśli to nie pomoże – wyloguj się i zaloguj ponownie. Okazało się że serwer http nie …

Back to Top