<?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; ASP e Office</title>
	<atom:link href="http://www.aspcenter.net/category/asp-office/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>Query su un file MS Excel con ASP</title>
		<link>http://www.aspcenter.net/2010/02/query-excel-asp.html</link>
		<comments>http://www.aspcenter.net/2010/02/query-excel-asp.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:13:18 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[ASP e Office]]></category>
		<category><![CDATA[asp excel]]></category>
		<category><![CDATA[ms excel]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[query excel]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=220</guid>
		<description><![CDATA[Tramite una pagina ASP è possibile connettersi ad un file MS Excel come se fosse un vero e proprio database, utilizzando quindi gli oggetti Connection e Recordset.
Vediamo subito un esempio pratico.
Si crei il file database.xls e vi si inseriscano dei dati come documentato dall&#8217;immagine seguente:

Si esegua adesso la seguente operazione dal menu dei Excel:
Inserisci / [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/02/query-excel-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Operazioni matematiche con Excel ed ASP</title>
		<link>http://www.aspcenter.net/2010/02/operazioni-matematiche-excel-asp.html</link>
		<comments>http://www.aspcenter.net/2010/02/operazioni-matematiche-excel-asp.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:11:16 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[ASP e Office]]></category>
		<category><![CDATA[asp excel]]></category>
		<category><![CDATA[ms excel]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[operazioni matematiche]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=216</guid>
		<description><![CDATA[Nell&#8217;articolo &#8220;Scrivere un file MS Excel con ASP&#8221; abbiamo visto come fa uno script ASP ad interagire staticamente con un file MS Excel.
Vediamo adesso come dinamizzare determinati processi ed usare Excel non come semplice output per un report ma come quel che è, ovvero un foglio elettronico ingrado di effettuare dei calcoli.
L&#8217;esempio vede una tabella [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/02/operazioni-matematiche-excel-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrivere un file MS Excel con ASP</title>
		<link>http://www.aspcenter.net/2010/02/scrivere-file-excel-asp.html</link>
		<comments>http://www.aspcenter.net/2010/02/scrivere-file-excel-asp.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:09:41 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[ASP e Office]]></category>
		<category><![CDATA[asp excel]]></category>
		<category><![CDATA[ms excel]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[ms word]]></category>
		<category><![CDATA[scrivere file excel]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=214</guid>
		<description><![CDATA[Nell&#8217;articolo &#8220;Scrivere un file MS Word con ASP&#8221; abbiamo visto come scrivere un file Word con ASP. Vediamo adesso come, con lo stesso sistema, è possibile scrivere un foglio elettronico di Microsoft Excel.

Segue un codice di esempio

&#60;%@LANGUAGE = VBScript%&#62;
&#60;%
    Response.Buffer = True
    Response.ContentType = "application/vnd.ms-excel"
    Dim [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/02/scrivere-file-excel-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrivere un file MS Word con ASP</title>
		<link>http://www.aspcenter.net/2010/02/scrivere-file-word-asp.html</link>
		<comments>http://www.aspcenter.net/2010/02/scrivere-file-word-asp.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:08:15 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[ASP e Office]]></category>
		<category><![CDATA[asp word]]></category>
		<category><![CDATA[ms excel]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[ms word]]></category>
		<category><![CDATA[scrivere file word]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=212</guid>
		<description><![CDATA[Grazie alle intestazioni ed alla specifica del tipo di documento è possibile accedere ad un file Microsoft Word e scrivere dinamicamente dei contenuti.Il seguente codice ASP ne è un chiaro esempio:

&#60;%@LANGUAGE = VBScript%&#62;
&#60;%
    Response.Buffer = True
    Response.ContentType = "application/msword"
    Dim F
    F = [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/02/scrivere-file-word-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

