<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ASPcenter.net &#187; request servervariables</title>
	<atom:link href="http://www.aspcenter.net/tag/request-servervariables/feed" rel="self" type="application/rss+xml" />
	<link>http://www.aspcenter.net</link>
	<description>Il blog degli sviluppatori ASP e .NET</description>
	<lastBuildDate>Mon, 08 Mar 2010 10:03:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Recuperare il percorso della pagina corrente con ASP</title>
		<link>http://www.aspcenter.net/2010/03/recuperare-percorso-pagina-corrente-asp.html</link>
		<comments>http://www.aspcenter.net/2010/03/recuperare-percorso-pagina-corrente-asp.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:02:58 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[Utility Varie]]></category>
		<category><![CDATA[path info]]></category>
		<category><![CDATA[percorso pagina corrente]]></category>
		<category><![CDATA[query string]]></category>
		<category><![CDATA[request servervariables]]></category>
		<category><![CDATA[server name]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=491</guid>
		<description><![CDATA[I linguaggi lato client come Javascript e VBScript dispongono di sistemi nativi per recuperare il percorso della pagina corrente, mentre i linguaggi lato server, in particolar modo ASP, non dispongono di tali sistemi.
Esistono tuttavia le variabili d&#8217;ambiente a venirci in soccorso. La collezione Request.ServerVariables dispone, tra l&#8217;altro, di determinate chiavi che permettono di recuperare i [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/03/recuperare-percorso-pagina-corrente-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recuperare l&#8217;IP degli utenti con ASP</title>
		<link>http://www.aspcenter.net/2010/03/recuperare-ip-utenti-asp.html</link>
		<comments>http://www.aspcenter.net/2010/03/recuperare-ip-utenti-asp.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:01:39 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[Utility Varie]]></category>
		<category><![CDATA[asp ip]]></category>
		<category><![CDATA[indirizzo ip]]></category>
		<category><![CDATA[recuperare ip]]></category>
		<category><![CDATA[remote addr]]></category>
		<category><![CDATA[request servervariables]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=488</guid>
		<description><![CDATA[Allo scopo di verificare la provenienza (remota) di un utente può essere comodo reperirne (ed utilzzare a piacimento, ma nei limiti della correttezza) l&#8217;indirizo IP.

Ecco come fare:

&#60;%
    Dim IP
    IP = Request.ServerVariables("REMOTE_ADDR")
    Response.Write "Il tuo indirizo IP è " &#038; IP
%&#62;

]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/03/recuperare-ip-utenti-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recuperare i referrer con ASP</title>
		<link>http://www.aspcenter.net/2010/03/recuperare-referrer-asp.html</link>
		<comments>http://www.aspcenter.net/2010/03/recuperare-referrer-asp.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:59:00 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[Utility Varie]]></category>
		<category><![CDATA[http referrer]]></category>
		<category><![CDATA[request servervariables]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=486</guid>
		<description><![CDATA[In ASP è estremamente semplice individuare l&#8217;indirizzo di provenienza: in questo modo possiamo sapere chi ha disposto un link verso le nostre pagine. Utilizzando questo codice ed effettuando una registrazione sul database, possiamo crearci un vero gestore di statistiche!

Ecco un esempio di codice:

&#60;%
    Dim ref
    ref = Request.ServerVariables("HTTP_REFERER")
  [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/03/recuperare-referrer-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

