<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>pan-Internet</title>
    <description>Internet: proxy servers, applications</description>
    <link>http://www.pan-internet.com/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.6.0.0</generator>
    <language>en</language>
    <blogChannel:blogRoll>http://www.pan-internet.com/opml.axd</blogChannel:blogRoll>
    <dc:creator>Pop Adrian-Nicolae</dc:creator>
    <dc:title>pan-Internet</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Pan-internet" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="pan-internet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Software How-To</media:category><itunes:author>PAN</itunes:author><itunes:explicit>no</itunes:explicit><itunes:subtitle>pan Internet</itunes:subtitle><itunes:summary>Internet related services - proxy, proxy servers and more applications</itunes:summary><itunes:category text="Technology"><itunes:category text="Software How-To" /></itunes:category><item>
      <title>ASP.Net: How to bind a drop down list with the names from a Enum</title>
      <description>&lt;p&gt;A ussual way of managing/comunicate between classes is using Enums. This allow you to implement more fast and safe objects that have static values (gender, day of the weeks, months, ...)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Very helpfully is also to bind comboboxes with enumerations; and ... this is simple! In order to bind a combobox with a enumerations values is enough the next code:&lt;/p&gt;
&lt;p&gt;cmbEnum.DataSource = Enum.GetNames(typeof(EnumType));&lt;/p&gt;
&lt;p&gt;The client get your enum; now to read it is also simple:&lt;/p&gt;
&lt;p&gt;EnumType et = (EnumType)Enum.Parse(typeof(EnumType), cmbEnum.SelectedValue);&lt;/p&gt;
&lt;p&gt;Simple, elegant and fast!&lt;/p&gt;
&lt;p&gt;Good luck!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xWryig-eB3IVq3Mg0DyEJg1zfEA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xWryig-eB3IVq3Mg0DyEJg1zfEA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xWryig-eB3IVq3Mg0DyEJg1zfEA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xWryig-eB3IVq3Mg0DyEJg1zfEA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/11/05/ASPNet-How-to-binda-drop-down-list-with-the-names-from-a-Enum.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/11/05/ASPNet-How-to-binda-drop-down-list-with-the-names-from-a-Enum.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=84c89bad-a520-4314-acce-eedd4e17a10f</guid>
      <pubDate>Fri, 05 Nov 2010 16:33:00 +0000</pubDate>
      <category>Programing .NET</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=84c89bad-a520-4314-acce-eedd4e17a10f</pingback:target>
      <slash:comments>7</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=84c89bad-a520-4314-acce-eedd4e17a10f</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/11/05/ASPNet-How-to-binda-drop-down-list-with-the-names-from-a-Enum.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=84c89bad-a520-4314-acce-eedd4e17a10f</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>Example of how to use 2 XMLs and link it using one XSLT file</title>
      <description>&lt;p&gt;In this short article I will present how should be managed the case that two XMLs contains data and you have to link this based on keys and transform into another XML in order to deserialize or read the related entity. For example, if you have a list with prices and a list with products, each list in a separete XML you will have to get each product with his price.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We have 3 files, 2 input XMLs and 1 XSLT.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Inside of the application you will have to apply a transoformation to the XML1 using your XSLT; from inside of XSLT will be called the data from the 2nd XML, called XML1. So, here is the input:&lt;/p&gt;
&lt;p&gt;XML1:&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;zone id="1"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;content 1 |&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/zone&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;zone id="2"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;content 2 ||&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/zone&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;zone id="3"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;content 3 |||&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/zone&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;XML2:&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;pages&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page idpage="1"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;page 1 |&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page idpage="2"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;page 2 ||&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page idpage="3"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;content&amp;gt;page 3 |||&amp;lt;/content&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;lt;/pages&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The transformation file looks like this:&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;xsl:output method="xml" indent="yes"/&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;xsl:template match="head"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:variable name="pages" select="document('xml2.xml')/pages"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cap&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:for-each select="zone"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;page&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pageid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of select="@id"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/pageid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pagecontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of select="content"/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/pagecontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:variable name="exid" select="@id"&amp;gt;&amp;lt;/xsl:variable&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outcontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:value-of select="$pages/page[@idpage=$exid]/content" /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/outcontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xsl:for-each&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cap&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/xsl:template&amp;gt;&lt;br /&gt;&amp;lt;/xsl:stylesheet&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As I say we apply the transformation to the XML1 document, getting data from 2nd XML will be solved by the XSLT, so you have to call a transformation to the XML1 from your application (no mather what language are you using). You have to pay attention, to the transformation, ussualy there are settings that doesn't allow to use document method in xslt; to allow this you have to set inside of your program this rule. About how the transformation will happen will see in a future article.&lt;/p&gt;
&lt;p&gt;To prove that this is working, I will place here the result of the transformation:&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;cap&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pageid&amp;gt;1&amp;lt;/pageid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pagecontent&amp;gt;content 1 |&amp;lt;/pagecontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outcontent&amp;gt;page 1 |&amp;lt;/outcontent&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pageid&amp;gt;2&amp;lt;/pageid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pagecontent&amp;gt;content 2 ||&amp;lt;/pagecontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outcontent&amp;gt;page 2 ||&amp;lt;/outcontent&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;page&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pageid&amp;gt;3&amp;lt;/pageid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pagecontent&amp;gt;content 3 |||&amp;lt;/pagecontent&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;outcontent&amp;gt;page 3 |||&amp;lt;/outcontent&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/page&amp;gt;&lt;br /&gt;&amp;lt;/cap&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/62uZyEmvo6HqDRcvOsW6f5XPhcU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/62uZyEmvo6HqDRcvOsW6f5XPhcU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/62uZyEmvo6HqDRcvOsW6f5XPhcU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/62uZyEmvo6HqDRcvOsW6f5XPhcU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/11/04/Example-of-how-to-use-2-XMLs-and-link-it-using-one-XSLT-file.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/11/04/Example-of-how-to-use-2-XMLs-and-link-it-using-one-XSLT-file.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=1fd6498a-7f85-415e-82cb-be933daa9b48</guid>
      <pubDate>Thu, 04 Nov 2010 21:50:00 +0000</pubDate>
      <category>Programing .NET</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=1fd6498a-7f85-415e-82cb-be933daa9b48</pingback:target>
      <slash:comments>8</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=1fd6498a-7f85-415e-82cb-be933daa9b48</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/11/04/Example-of-how-to-use-2-XMLs-and-link-it-using-one-XSLT-file.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=1fd6498a-7f85-415e-82cb-be933daa9b48</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>Example of Ajax with jQuery in MVC2</title>
      <description>&lt;p&gt;This is a basic article of how to use the ajax that exists in JQuery in MVC2.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;1st of all you should know that you have to include into your page the jQuery framework. If you use telerik controls for MVC this is already there. About the code I have to say that it is functional, and copy-paste here, so as it is in the application.&lt;/p&gt;
&lt;p&gt;First step is to implement a Action in your Controller:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [AcceptVerbs( HttpVerbs.Get)]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public JsonResult GetSeasons(int divisionId)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var v = StagesBL.ListSeasons4Division(divisionId);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return Json(v, JsonRequestBehavior.AllowGet);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;What I return is a list of objects (ViewModels). Using this action I implement the next javascript that:&lt;/p&gt;
&lt;p&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var ddlDiv;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var ddlSes;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function pageLoad() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddlDiv = $get("IdDivision");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddlSes = $get("IdSeason");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $addHandler(ddlDiv, "change", bindSes);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("al ok!");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bindSes();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } catch (e) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(e);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function bindSes() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var URL = "/Stages/GetSeasons/";&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddlSes.options.length = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.getJSON(URL, { divisionId: ddlDiv.value }, function (data) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var k = 0; k &amp;lt; data.length; k++) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var newOption = new Option(data[k].Name, data[k].Id);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddlSes.options.add(newOption);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (e) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(e);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;This is enough for binding a dropdownlist (ddlSes) based on a another dropdownlist change event (ddlDiv).&lt;/p&gt;
&lt;p&gt;Hoping that this will help I have to say that I am avaible to help!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bKjBtEu4ZWlOpRI8AB5Nzitwmso/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bKjBtEu4ZWlOpRI8AB5Nzitwmso/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bKjBtEu4ZWlOpRI8AB5Nzitwmso/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bKjBtEu4ZWlOpRI8AB5Nzitwmso/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/11/03/Example-of-Ajax-with-JQuery-in-MVC2.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/11/03/Example-of-Ajax-with-JQuery-in-MVC2.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=566e4037-28d5-4a79-9ecf-803ca4e4a272</guid>
      <pubDate>Wed, 03 Nov 2010 21:18:00 +0000</pubDate>
      <category>Programing .NET</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=566e4037-28d5-4a79-9ecf-803ca4e4a272</pingback:target>
      <slash:comments>12</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=566e4037-28d5-4a79-9ecf-803ca4e4a272</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/11/03/Example-of-Ajax-with-JQuery-in-MVC2.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=566e4037-28d5-4a79-9ecf-803ca4e4a272</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>Web Crawler</title>
      <description>&lt;p&gt;Imagine a world where you can see some data in a place and after 5 minutes that data should be yours. Imagine that all you have to do is to describe that data and to tell to a software something like this "I want this, there". And there can be a database, a excel file, or simple, a text file; or a XML; or a CSV; or your specifyed format!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;This will be posible soon, with our new product in the data collecting domain. No more people to work for you on this job. No more "Hard work" or high tehnology requered. Just some clicks and you are there, with the needed data in your hand.&lt;/p&gt;
&lt;p&gt;Where you can use it? in various domains:&lt;/p&gt;
&lt;p&gt;1. Imagine that you have a second-hand car ads site, for clients; Now you find a good client who is ready to pay good money for having his ads on your site. What you will do ...? copy-paste each ad? Not a good solution. Is more simple with my product.&lt;/p&gt;
&lt;p&gt;2. Imagine that you are looking for a house. Ussualy the real estate sites doesn't offer good comparation tools for comparing the ads. What if you will have that ads into a excel file where you can sort, order, filter that ads? it would be a little more nice.&lt;/p&gt;
&lt;p&gt;3. You have sites. In diferent domains. Grabbing data from users is a little dificulty. What you need is our tool. It can increase your content very easy!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cAD0-_GZFvKt7Xi9JfQ9aUobwFo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cAD0-_GZFvKt7Xi9JfQ9aUobwFo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cAD0-_GZFvKt7Xi9JfQ9aUobwFo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cAD0-_GZFvKt7Xi9JfQ9aUobwFo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/10/19/Web-Crawler.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/10/19/Web-Crawler.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=497405a8-6577-4db0-8f38-95b053efd0c1</guid>
      <pubDate>Tue, 19 Oct 2010 04:53:00 +0000</pubDate>
      <category>Programing .NET</category>
      <category>Crawler</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=497405a8-6577-4db0-8f38-95b053efd0c1</pingback:target>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=497405a8-6577-4db0-8f38-95b053efd0c1</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/10/19/Web-Crawler.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=497405a8-6577-4db0-8f38-95b053efd0c1</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>RSS reader</title>
      <description>&lt;p&gt;We are happy to announce that our 1st product, an &lt;strong&gt;RSS Reader&lt;/strong&gt; application built in ASP.NET MVC2 called &lt;strong&gt;PAN RSS&lt;/strong&gt; is avaible for tests on &lt;a title="RSS" href="http://www.feed-box.com/" target="_blank"&gt;feed-box.com&lt;/a&gt; (in romanian language). The application has succesflly pas a important test made by GoogleBot - see the image below - we run with a very good response from server the application for more than 20,000 request in 1 day (that means a request every 4,32 seconds).&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img style="vertical-align: middle;" src="http://fb.popnadrian.com/stats/pan-rss-performance.PNG" alt="GoogleBot activity for PAN RSS solution" /&gt;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;In order to have a "premium" solution as a RSS reader we try to develop it to work as performant is posible. In the current solution there are a small number of features but this is for tests, for feedback from clients and users (we are waiting and from you), a complete list with the features of this application will be published in the moment when a beta solution will be avaible for user. Current features include RSS feed readers, SEO features and a complete admin solution; we are working for themes support (including mobile version).&lt;/p&gt;
&lt;p style="text-align: left;"&gt;In order to perform better and better we need FEEDBACK from you; please test the solution -  &lt;a title="RSS" href="http://www.feed-box.com/" target="_blank"&gt;feed-box.com&lt;/a&gt; - and send your sugestion to us (here, in comments, in the web application on contact page, anywhere, no mather). pan-Internet promise that all good sugestion will be considered.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;strong&gt;Are you interested about this solution?&lt;/strong&gt; About comercial edition? Contact us with this in order to receive more details.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;Enjoy and don't forget about feedback!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DmrQJvDLc1VrU8_0FWGsApnKAmM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DmrQJvDLc1VrU8_0FWGsApnKAmM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DmrQJvDLc1VrU8_0FWGsApnKAmM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DmrQJvDLc1VrU8_0FWGsApnKAmM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/08/16/RSS-reader.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/08/16/RSS-reader.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=8bd1e905-44f9-4d33-969f-3a6dc9775ec3</guid>
      <pubDate>Mon, 16 Aug 2010 21:32:00 +0000</pubDate>
      <category>Programing .NET</category>
      <category>Programing SQL</category>
      <category>PAN RSS</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=8bd1e905-44f9-4d33-969f-3a6dc9775ec3</pingback:target>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=8bd1e905-44f9-4d33-969f-3a6dc9775ec3</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/08/16/RSS-reader.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=8bd1e905-44f9-4d33-969f-3a6dc9775ec3</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>Sql optimizations - subqueries</title>
      <description>&lt;div style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #ffffff; margin: 8px;"&gt;
&lt;p&gt;Problem: in ms&lt;strong&gt;sql&lt;/strong&gt;, to insert into a destination table, data from a source table - only data that is not already inserted.&lt;/p&gt;
&lt;p&gt;1st solution, a simple query like [1]; but when you have to run for more data, this will go bad. And here is the solution:&lt;/p&gt;
&lt;p&gt;When using querys in anotherr query, a good ideea in order to made a opitmized query is to use in subquery what you have to process, not what you want to exclude:&lt;/p&gt;
&lt;p&gt;[1] Wrong:&lt;/p&gt;
&lt;pre&gt;insert into table_destination select * from table_source where identifierfield not in (select identifierfield from table_destination)&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;[2] To corect this, you have to change somehow the expression "where identifierfield&amp;nbsp;&lt;em&gt;not&amp;nbsp;&lt;/em&gt;in" into a expression like "where identifierfield in". So, the optimized way of this query should look like:&lt;/p&gt;
&lt;pre&gt;insert into table_destination select * from table_source where identifierfield in (select identifierfield from table_source s left join table_destination d on d.identifierfield = s.identifierfield where d.identifierfield is null)&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Sc3p0ogDJK0hG1npZAQZ5dD4g8g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Sc3p0ogDJK0hG1npZAQZ5dD4g8g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Sc3p0ogDJK0hG1npZAQZ5dD4g8g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Sc3p0ogDJK0hG1npZAQZ5dD4g8g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/07/26/sql-optimizationz-subqueries.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/07/26/sql-optimizationz-subqueries.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=7cb7e66a-edd7-4a37-85d5-0eba634cc10c</guid>
      <pubDate>Mon, 26 Jul 2010 06:16:00 +0000</pubDate>
      <category>Programing SQL</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=7cb7e66a-edd7-4a37-85d5-0eba634cc10c</pingback:target>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=7cb7e66a-edd7-4a37-85d5-0eba634cc10c</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/07/26/sql-optimizationz-subqueries.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=7cb7e66a-edd7-4a37-85d5-0eba634cc10c</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>Ping - all about ping command. Ping-Pong!</title>
      <description>&lt;p style="text-align: justify;"&gt;&lt;strong&gt;&lt;a title="Ping" href="http://www.pan-internet.com/ping.aspx"&gt;Ping&lt;/a&gt;&lt;/strong&gt; is a important computer &lt;strong&gt;network administration utility&lt;/strong&gt;; this tool is used to test whether a particular host is reachable across an &lt;strong&gt;Internet Protocol&lt;/strong&gt; (IP) network and it measure the round-trip time for packets sent from the local host to a destination computer [including the local host's own interfaces]. When using this utility from pan-internet.com your "&lt;em&gt;localhost&lt;/em&gt;" become our web server; this feature (changing the IP for where you send the ping) is very helpfully when you need to see from where is coming the reply of a computer. An example in this way is pinging a &lt;strong&gt;domain&lt;/strong&gt; what has been changed the name server - untill replication is done requests to this domain will reply from diferent servers (old server or new server).&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;How &lt;strong&gt;ping operates&lt;/strong&gt;. It happens by sending Internet Control Message Protocol (ICMP) echo request packets to the target host and waits for an ICMP response (casually called a pong). The ping process measures the round-trip time and records any packet loss. Usually results of the test are printed in form of a statistical summary of the response packets received, including the minimum, maximum, and the mean round-trip times; sometimes there is included and the standard deviation of the mean.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;The use of the &lt;strong&gt;ping utility&lt;/strong&gt; is usually described as pinging a host computer but there are various command line options [diferent on each operating system] that enable special operational modes, such as to specify the &lt;strong&gt;packet size&lt;/strong&gt; used as the probe, &lt;strong&gt;automatic &lt;/strong&gt;repeated operation for sending a specified count of probes, &lt;strong&gt;time stamping&lt;/strong&gt; options, or to perform a &lt;strong&gt;Flood pinging&lt;/strong&gt; attention with this, it may be considered as a simple form of denial-of-service attack (you overwhelm the destination/victim with ICMP echo request packets).&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;&lt;a title="Send ping command" href="http://www.pan-internet.com/ping.aspx"&gt;Ping-Pong&lt;/a&gt; command history. &lt;/strong&gt;The 1st ping tool was wroted by Mike Muuss in December 1983; it was used to troubleshoot problems in an Internet Protocol network. The name of that program was inspired by the pulses of sound made by a sonar [the operation is analogous to a sonar in submarines]. A big step was done in &lt;strong&gt;2003&lt;/strong&gt; when a number of Internet service providers began &lt;strong&gt;filtering&lt;/strong&gt; out ICMP Type 8 (&lt;strong&gt;ICMP Echo Request&lt;/strong&gt;) messages at their network boundaries, considering this as unusefull as a result of the increasing use of ping for &lt;strong&gt;target reconnaissance&lt;/strong&gt; -a example of abusing of ping is some &lt;strong&gt;worms such as Welchia&lt;/strong&gt; that flood the Internet with ping requests in order to locate &lt;strong&gt;new computers to infect&lt;/strong&gt;. The abuse of ping command affects the networks, not only did the availability of ping responses; it added to the overall load on networks and this cause problems for &lt;strong&gt;routers &lt;/strong&gt;across the Internet. Although &lt;strong&gt;RFC 1122&lt;/strong&gt; prescribes that any host must accept an echo-request and issue an echo-reply in return but hosts that no longer follow this standard are frequent on the public Internet.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;ICMP packet&lt;/strong&gt;&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;a title="Ping" href="http://www.pan-internet.com/ping.aspx"&gt;&lt;img src="http://pan-internet.com/pictures/icmp_packet.PNG" alt="icmp echo packet" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;Internet Control Message Protocol packet for ping consist of &lt;strong&gt;header&lt;/strong&gt; (yellow) that contains the protocol and type service, the payload (blue - contains the type of ICMP message, code, checksum, Quenc - here the ICMP echo message, data - a arbitrary length packet). ***ICMP, including ping resides on network layer (the same level as IP - level 3) - that means that &lt;a title="Ping" href="http://www.pan-internet.com/ping.aspx"&gt;ping &lt;/a&gt;doesn't use a port for communication.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;Ping command is used and in other domains like gaming where the game test the network by sending some ping command and give to the player some informations regarding the experience of gaming what comes.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;The term of &lt;a title="Send a ping package" href="http://www.pan-internet.com/ping.aspx"&gt;ping &lt;/a&gt;is used to test a feature &lt;strong&gt;avaibility&lt;/strong&gt;. Ussualy this are diferent by the original ping command but the functionality is similar (the sonar): using ping to test if a service is avaible by sending a query to it - requesting a web page to see if the web server is avible, executing a simple sql query to see if the database serve is working properly, or asking information from diferent instant messaging systems to see if a person is conected&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/U5eugAyOwKlCO2UeTwjh06F5hVg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U5eugAyOwKlCO2UeTwjh06F5hVg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/U5eugAyOwKlCO2UeTwjh06F5hVg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U5eugAyOwKlCO2UeTwjh06F5hVg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/03/14/Ping-all-about-ping-command-Ping-Pong!.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/03/14/Ping-all-about-ping-command-Ping-Pong!.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=37db308e-163f-4e7a-bb2c-08cd662ae127</guid>
      <pubDate>Sun, 14 Mar 2010 21:45:00 +0000</pubDate>
      <category>IP Toools</category>
      <category>Ping</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=37db308e-163f-4e7a-bb2c-08cd662ae127</pingback:target>
      <slash:comments>22</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=37db308e-163f-4e7a-bb2c-08cd662ae127</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/03/14/Ping-all-about-ping-command-Ping-Pong!.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=37db308e-163f-4e7a-bb2c-08cd662ae127</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>How do I change my IP address?</title>
      <description>&lt;p&gt;The &lt;strong&gt;&lt;a title="IP to geolocation" href="http://www.pan-internet.com/ip-to-geolocation.aspx"&gt;Internet Protocol&lt;/a&gt; (IP) address&lt;/strong&gt; is a number assigned in order to establish the communication between your computer/machine and the network. Ussualy you will need to change the IP address when you get a network conflict or other netwoek related issue, when you need a specific IP address or range (some applications ask this); change of the IP address is used and when you need to protect yourself from other users/programs-viruses.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;For changing the IP address you have to know some basic things like what is a&lt;a title="ping" href="http://www.pan-internet.com/ping.aspx"&gt; &lt;/a&gt;&lt;strong&gt;&lt;a title="ping" href="http://www.pan-internet.com/ping.aspx"&gt;static IP&lt;/a&gt;&lt;/strong&gt; (this means that you are the owner of that IP, you don't share it with somebody else) address or a &lt;strong&gt;&lt;a title="who is for domains" href="http://www.pan-internet.com/whois.aspx"&gt;dynamic IP&lt;/a&gt;&lt;/strong&gt; address(this happens in a network where you have an address that can be changed automatically - when you connect to network you get password X but on other session you will get an Y IP address and X will be assigned to sombody else).&lt;/p&gt;
&lt;p&gt;Change te IP address when you use a &lt;strong&gt;dial-up/PPPoE&lt;/strong&gt; can be done by disconecting and reconecting to the network.&lt;/p&gt;
&lt;p&gt;When you are using &lt;strong&gt;modem/DSL/FTTH&lt;/strong&gt; connection, the IP is setup as a static IP based on your MAC address. In this case you have to request a IP change from your ISP (Internet Service Provider).&lt;/p&gt;
&lt;p&gt;In order to change the IP address you have to access your IP machine settings. This happens diferent for every operating system. The basic stuff is to get to the IP address settings:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Windows 2000/XP -&lt;em&gt;Start&amp;gt;Controll Panel&amp;gt;Network Connections&amp;gt;Local area network&amp;gt;Properties&amp;gt;Internet Protocol (TCP/IP)&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Windows 9x/Milenium - &lt;em&gt;Start&amp;gt;Control Panel&amp;gt;Network&amp;gt;Network card&amp;gt;TCP/IP&amp;gt;IP address&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;for Linux users - access &lt;em&gt;/etc/sysconfig/network&lt;/em&gt; directory and there edit the interfaces and adjust settings.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;and there to change the IP address/subnet mask/gateway.&lt;/p&gt;
&lt;p&gt;Note that the IP address cann't be changed from outside of your network; that means after you change the IP, your security [ussualy] increase.&lt;/p&gt;
&lt;p&gt;Other methods for changing the IP address is to &lt;a href="http://www.pan-internet.com/proxy.aspx"&gt;use a proxy&lt;/a&gt;, but this is subject of another article, it is diferent.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uVOQ9eif_jxJlHS68X_pqEu8cMg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uVOQ9eif_jxJlHS68X_pqEu8cMg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/uVOQ9eif_jxJlHS68X_pqEu8cMg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uVOQ9eif_jxJlHS68X_pqEu8cMg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/03/14/How-do-I-change-my-IP-address.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/03/14/How-do-I-change-my-IP-address.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=2840d46f-5de3-43b3-a787-4470d8836203</guid>
      <pubDate>Sun, 14 Mar 2010 21:42:00 +0000</pubDate>
      <category>IP Toools</category>
      <category>IP Address</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=2840d46f-5de3-43b3-a787-4470d8836203</pingback:target>
      <slash:comments>15</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=2840d46f-5de3-43b3-a787-4470d8836203</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/03/14/How-do-I-change-my-IP-address.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=2840d46f-5de3-43b3-a787-4470d8836203</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
    <item>
      <title>i3Theme vPan - final version for BlogEngine.Net 1.6.0.0</title>
      <description>&lt;p&gt;This is the finall version of i3Theme, builded for BlogEngine 1.6.0.0.&lt;/p&gt;
&lt;p&gt;You can get it from here:&lt;a href="http://www.pan-internet.com/apps/blogengine.net/themes/i3Theme%20vPan.zip"&gt;&amp;nbsp;pan-internet.com &amp;gt; blogengine.net &amp;gt; &lt;strong&gt;themes&lt;/strong&gt; &amp;gt; i3Theme vPan.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;What is fixed is the tag cloud (the diference is that last time there was some problems regarding the design of this widget.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Enjoy it!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/v-ITxSi5wfyHQ2dRbQvChZikwIs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v-ITxSi5wfyHQ2dRbQvChZikwIs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/v-ITxSi5wfyHQ2dRbQvChZikwIs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v-ITxSi5wfyHQ2dRbQvChZikwIs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/03/14/i3Theme-vPan-final-version-for-BlogEngineNet-1600.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/03/14/i3Theme-vPan-final-version-for-BlogEngineNet-1600.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=324e0c56-2615-4a62-889e-4c0c5dde9a32</guid>
      <pubDate>Sun, 14 Mar 2010 21:37:00 +0000</pubDate>
      <category>BlogEngine.NET</category>
      <category>Themes</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=324e0c56-2615-4a62-889e-4c0c5dde9a32</pingback:target>
      <slash:comments>56</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=324e0c56-2615-4a62-889e-4c0c5dde9a32</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/03/14/i3Theme-vPan-final-version-for-BlogEngineNet-1600.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=324e0c56-2615-4a62-889e-4c0c5dde9a32</wfw:commentRss>
    <dc:creator>PAN</dc:creator><enclosure url="http://www.pan-internet.com/apps/blogengine.net/themes/i3Theme%20vPan.zip" length="162340" type="application/x-zip-compressed" /><media:content url="http://www.pan-internet.com/apps/blogengine.net/themes/i3Theme%20vPan.zip" fileSize="162340" type="application/x-zip-compressed" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> This is the finall version of i3Theme, builded for BlogEngine 1.6.0.0. You can get it from here:&amp;nbsp;pan-internet.com &amp;gt; blogengine.net &amp;gt; themes &amp;gt; i3Theme vPan.zip What is fixed is the tag cloud (the diference is that last time there was some pr</itunes:subtitle><itunes:author>PAN</itunes:author><itunes:summary> This is the finall version of i3Theme, builded for BlogEngine 1.6.0.0. You can get it from here:&amp;nbsp;pan-internet.com &amp;gt; blogengine.net &amp;gt; themes &amp;gt; i3Theme vPan.zip What is fixed is the tag cloud (the diference is that last time there was some problems regarding the design of this widget. &amp;nbsp; Enjoy it!</itunes:summary><itunes:keywords>BlogEngine.NET, Themes</itunes:keywords></item>
    <item>
      <title>Is working? Is down or up?</title>
      <description>&lt;p&gt;What is the &lt;strong&gt;stautus of a computer&lt;/strong&gt;? What about &lt;strong&gt;my site&lt;/strong&gt;, why I cann't load it? What about &lt;strong&gt;my visitors&lt;/strong&gt;? What they are seeing? Just some reasons to &lt;strong&gt;use ping&lt;/strong&gt;, from your computer and from pan-Internet.com application.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;A simple way to see if a comuter is working: &lt;strong&gt;send ping command&lt;/strong&gt;. This can be done from your &lt;strong&gt;operating system&lt;/strong&gt;, or from a web application like pan-Internet using &lt;a title="Ping, ping command, send ping from web" href="http://www.pan-internet.com/ping.aspx"&gt;ping application&lt;/a&gt; from pan Internet.&lt;/p&gt;
&lt;p&gt;You can send ping to a IP address (example &lt;em&gt;ping 127.0.0.1&lt;/em&gt; is sending a ping to your own computer using &lt;strong&gt;loopback interface&lt;/strong&gt;), ping to a domain (example &lt;em&gt;ping pan-internet.com&lt;/em&gt; is sending a ping command to the server where this &lt;strong&gt;site is hosted&lt;/strong&gt;); also for sending ping to your computer you can use &lt;em&gt;ping localhost&lt;/em&gt; - this is the same as &lt;em&gt;ping 127.0.0.1&lt;/em&gt;. The result of the ping, called &lt;strong&gt;response&lt;/strong&gt; can tell to you how is your &lt;strong&gt;connection &lt;/strong&gt;with the machine where you have sent ping - time that was necesary for receiving the response, the percent of lost data in this command show you how you can comunicate with that machine.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&amp;nbsp; &lt;a title="Ping from pan-internet.com" href="http://www.pan-internet.com/pictures/pingfrompaninternet.PNG"&gt;&lt;img src="http://www.pan-internet.com/pictures/pingfrompaninternet.PNG" alt="Ping from pan-internet.com" /&gt; &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also the &lt;strong&gt;ping command&lt;/strong&gt; can be used with some &lt;strong&gt;parameters &lt;/strong&gt;that will modify the behaviour of this command; on ping application you can see the complete tehnical details of this command. For example, if you need to test the behavior of a server, you can send the ping command continously, but be carefully, this can be considered a attack by the firewall and can block your connection with the server:&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;a title="Ping command with parameter - continously ping" href="http://www.pan-internet.com/pictures/pingcontinous.PNG"&gt; &lt;img src="http://www.pan-internet.com/pictures/pingcontinous.PNG" alt="Ping command with parameter - continously ping" /&gt; &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;panInternet Ping application send pings without parameters. Just simple pings;to use parameters I recomand to you to use your &lt;strong&gt;windows/linux command line&lt;/strong&gt;, from there you have a lot of options for &lt;strong&gt;sending ping&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/D71Q6K5jHx0y9Ddayn3P4BW4koQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D71Q6K5jHx0y9Ddayn3P4BW4koQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/D71Q6K5jHx0y9Ddayn3P4BW4koQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D71Q6K5jHx0y9Ddayn3P4BW4koQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.pan-internet.com/post/2010/03/06/ping-command-usability.aspx</link>
      
      <comments>http://www.pan-internet.com/post/2010/03/06/ping-command-usability.aspx#comment</comments>
      <guid>http://www.pan-internet.com/post.aspx?id=92acd7c6-b147-4125-8083-7d0a370ba390</guid>
      <pubDate>Sat, 06 Mar 2010 17:46:00 +0000</pubDate>
      <category>IP Toools</category>
      <category>Ping</category>
      <dc:publisher>admin</dc:publisher>
      <pingback:server>http://www.pan-internet.com/pingback.axd</pingback:server>
      <pingback:target>http://www.pan-internet.com/post.aspx?id=92acd7c6-b147-4125-8083-7d0a370ba390</pingback:target>
      <slash:comments>36</slash:comments>
      <trackback:ping>http://www.pan-internet.com/trackback.axd?id=92acd7c6-b147-4125-8083-7d0a370ba390</trackback:ping>
      <wfw:comment>http://www.pan-internet.com/post/2010/03/06/ping-command-usability.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.pan-internet.com/syndication.axd?post=92acd7c6-b147-4125-8083-7d0a370ba390</wfw:commentRss>
    <dc:creator>PAN</dc:creator></item>
  <media:credit role="author">PAN</media:credit><media:rating>nonadult</media:rating><media:description type="plain">pan Internet</media:description></channel>
</rss>

