<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Classic ASP</title><link>http://forums.iis.net/1032.aspx</link><description>Problems with Classic ASP (*.asp) applications discussion</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: What the meaning of colon sign ":" in asp syntax?</title><link>http://forums.iis.net/thread/1266643.aspx</link><pubDate>Mon, 24 Apr 2006 15:43:17 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1266643</guid><dc:creator>aaaa0441</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1266643.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1032&amp;PostID=1266643</wfw:commentRss><description>Thank you. ^_^</description></item><item><title>Re: What the meaning of colon sign ":" in asp syntax?</title><link>http://forums.iis.net/thread/1266427.aspx</link><pubDate>Mon, 24 Apr 2006 12:49:02 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1266427</guid><dc:creator>florian_mrt</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1266427.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1032&amp;PostID=1266427</wfw:commentRss><description>&lt;p&gt;Yeah.&lt;/p&gt;
&lt;p&gt;eg:&lt;/p&gt;
&lt;p&gt;&lt;font color=#ff0000&gt;x_CompanyID = Null: ox_CompanyID = Null: x_CompanyName = Null: ox_CompanyName = Null: x_ROC = Null: ox_ROC = Null: x_PostalAddress = Null: ox_PostalAddress = Null: x_WebsiteAddress = Null: ox_WebsiteAddress = Null&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Is the same as (and if you like, should normally be):&lt;/p&gt;
&lt;p&gt;&lt;font color=#ff0000&gt;x_CompanyID = Null&lt;br /&gt;ox_CompanyID = Null&lt;br /&gt;x_CompanyName = Null&lt;br /&gt;&lt;/font&gt;&lt;font color=#ff0000&gt;ox_CompanyName = Null&lt;br /&gt;x_ROC = Null&lt;br /&gt;ox_ROC = Null&lt;br /&gt;x_PostalAddress = Null&lt;br /&gt;ox_PostalAddress = Null&lt;br /&gt;x_WebsiteAddress = Null&lt;br /&gt;ox_WebsiteAddress = Null&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;In this case it's quite understandable why the code writer has used several code lines in a single line, but its not a recommended approach to keep your code clean and overseeable. If you're a C++, pascal or PHP&amp;nbsp;programmor, a colon in ASP is the same as a semicolon in these other languages for multiple code statements on a single line.&lt;/p&gt;</description></item><item><title>Re: What the meaning of colon sign ":" in asp syntax?</title><link>http://forums.iis.net/thread/1264997.aspx</link><pubDate>Sat, 22 Apr 2006 04:48:35 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1264997</guid><dc:creator>aaaa0441</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1264997.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1032&amp;PostID=1264997</wfw:commentRss><description>&lt;p&gt;Thanks, man.&lt;/p&gt;
&lt;p&gt;So we can use colon sign to merge as many lines as we want into one line in ASP?&lt;/p&gt;</description></item><item><title>Re: What the meaning of colon sign ":" in asp syntax?</title><link>http://forums.iis.net/thread/1264321.aspx</link><pubDate>Fri, 21 Apr 2006 13:25:35 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1264321</guid><dc:creator>tomkmvp</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1264321.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1032&amp;PostID=1264321</wfw:commentRss><description>It just allows you to put a second set of commands on the same line.</description></item><item><title>What the meaning of colon sign ":" in asp syntax?</title><link>http://forums.iis.net/thread/1264104.aspx</link><pubDate>Fri, 21 Apr 2006 08:55:01 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1264104</guid><dc:creator>aaaa0441</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1264104.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1032&amp;PostID=1264104</wfw:commentRss><description>&lt;p&gt;&lt;font color=#000000&gt;I found the following asp code with colon sign ":" used. Is it any special type of variable declaration or initialization? Anyway, what's the use of it?&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=#ff0000&gt;' Initialize common variables&lt;br /&gt;x_CompanyID = Null: ox_CompanyID = Null&lt;br /&gt;x_CompanyName = Null: ox_CompanyName = Null&lt;br /&gt;x_ROC = Null: ox_ROC = Null&lt;br /&gt;x_PostalAddress = Null: ox_PostalAddress = Null&lt;br /&gt;x_WebsiteAddress = Null: ox_WebsiteAddress = Null&lt;/font&gt;&lt;/p&gt;</description></item></channel></rss>