There are scores of ways to store, work with, and retrieve data on the web. Simple databases, relational databases, XML, even custom flat files can hold our product catalogs, user information, and other repositories of important stuff that we want to share with the world. There are some logical ways to work with different kinds of …
Category Archives: Programming
Short If Statement in PHP
PHP – One Line If Statement – Short If Statement – Condensed If Statement I always have to look this up, so here it is for easy reference. Sometimes is makes the code look less cluttered if you can express and if in one line. The one line if statement is also known as the ternary …
Advanced CSS Menu
Last tutorial, I showed you how to design a watercolor effect menu in Photoshop. This tutorial I will show you how to slice up the menu design (step by step) and put them together with CSS. Most of you probably know how to code a horizontal or vertical CSS list menu. Now let’s take it to …
ASP (VB, C#) / PHP code reference
ASP (vb.net and c#.net) and PHP are the most common language for web development environment. This are not the fully conversion of one to other but get a quick references. We could get the ASP Convertor for free from the net but this might help to the developer when we work in different cross language …
The file web.sitemap required by XmlSiteMapProvider does not exist.
The most common case when the “The file web.sitemap required by XmlSiteMapProvider does not exist” error is received is when a SiteMap control was added to a WebForm, however you don’t have a mandatory Web.sitemap file in the root of your web application. To fix this error, make sure you have this file in the …
Continue reading “The file web.sitemap required by XmlSiteMapProvider does not exist.”
The ASP.NET Repeater Web Server Control
<asp:Repeater id=”myRepeaterPlain” runat=”server”> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, “Id”) %>, <%# DataBinder.Eval(Container.DataItem, “Name”) %>, <%# DataBinder.Eval(Container.DataItem, “URL”) %>, <%# DataBinder.Eval(Container.DataItem, “Image”) %> <br /> </ItemTemplate> </asp:Repeater>