<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Plupload Forum - Plupload Handler in ASP .net]]></title>
		<link>http://www.plupload.com/punbb/viewtopic.php?id=1696</link>
		<description><![CDATA[The most recent posts in Plupload Handler in ASP .net.]]></description>
		<lastBuildDate>Mon, 16 Apr 2012 18:02:12 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Plupload Handler in ASP .net]]></title>
			<link>http://www.plupload.com/punbb/viewtopic.php?pid=6856#p6856</link>
			<description><![CDATA[<p>google: &quot;vb net to c# converter&quot;</p>]]></description>
			<author><![CDATA[dummy@example.com (LeandroJF)]]></author>
			<pubDate>Mon, 16 Apr 2012 18:02:12 +0000</pubDate>
			<guid>http://www.plupload.com/punbb/viewtopic.php?pid=6856#p6856</guid>
		</item>
		<item>
			<title><![CDATA[Re: Plupload Handler in ASP .net]]></title>
			<link>http://www.plupload.com/punbb/viewtopic.php?pid=6854#p6854</link>
			<description><![CDATA[<p>Can you add comments to this code because i dont know vb .net or can u convert it in c sharp</p>]]></description>
			<author><![CDATA[dummy@example.com (saqib)]]></author>
			<pubDate>Mon, 16 Apr 2012 16:10:41 +0000</pubDate>
			<guid>http://www.plupload.com/punbb/viewtopic.php?pid=6854#p6854</guid>
		</item>
		<item>
			<title><![CDATA[Re: Plupload Handler in ASP .net]]></title>
			<link>http://www.plupload.com/punbb/viewtopic.php?pid=6851#p6851</link>
			<description><![CDATA[<p>piece of code to process plupload requests in vb.net assuming unique_names setting set:</p><div class="codebox"><pre><code>Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        Try
            Dim name As String = context.Request(&quot;name&quot;)
            Dim chunk As String = context.Request(&quot;chunk&quot;)
            Dim chunks As String = context.Request(&quot;chunks&quot;)
            If context.Request.Files.Count &gt; 0 And name &lt;&gt; &quot;&quot; Then
                Dim fs As New FileStream(context.Server.MapPath(&quot;TempFiles/&quot; &amp; name), IIf(chunk &lt;&gt; &quot;&quot; AndAlso CInt(chunk) &gt; 0, FileMode.Append, FileMode.Create))
                Dim postedFile As HttpPostedFile = context.Request.Files(0)
                Dim buffer(1023) As Byte
                Dim count As Integer = buffer.Length
                Do
                    count = postedFile.InputStream.Read(buffer, 0, count)
                    If count = 0 Then Exit Do
                    fs.Write(buffer, 0, count)
                Loop
                fs.Close()
                fs.Dispose()
            End If

        Catch ex As Exception
            context.Response.Write(&quot;error|&quot; &amp; ex.Message)
        End Try
    End Sub</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (LeandroJF)]]></author>
			<pubDate>Mon, 16 Apr 2012 15:50:08 +0000</pubDate>
			<guid>http://www.plupload.com/punbb/viewtopic.php?pid=6851#p6851</guid>
		</item>
		<item>
			<title><![CDATA[Plupload Handler in ASP .net]]></title>
			<link>http://www.plupload.com/punbb/viewtopic.php?pid=6850#p6850</link>
			<description><![CDATA[<p>can any body tell me how to write server side handler of plupload in ASP.net<br />has any body written it can he/she share it please i need it urgent thanks in advance</p>]]></description>
			<author><![CDATA[dummy@example.com (saqib)]]></author>
			<pubDate>Mon, 16 Apr 2012 14:03:05 +0000</pubDate>
			<guid>http://www.plupload.com/punbb/viewtopic.php?pid=6850#p6850</guid>
		</item>
	</channel>
</rss>
