Color coding of table entries Official Port/application combination is registered with IANA Unofficial Port/application combination is not registered with IANA Conflict Port is in use for multiple applications
Monthly Archives: June 2009
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>
Sharethis flash (Social bookmarking in flash)
Social bookmarking in flash!!! Now you can , place a “bookmark button” directly inside flash for sharing with the most popular online services!. This little utility can enable you to SUBMIT to most popular informational, news and bookmarking services on internet (Digg ,del.icio.us … etc.) It will help you drive more traffic to your site. AS3 …
Continue reading “Sharethis flash (Social bookmarking in flash)”
SOAP Server with PHP5
Setting up a SOAP web service with php used to seem pretty intimidating to me, until I finally decided that I would hunker down and build my own WSDL. Now that I’ve successfully gone through the process of building a SOAP web service with php5, I would say that it really isn’t all that bad. …