tags:

views:

289

answers:

2

Is there an equivalent method for this in ASP.Net?

+2  A: 

Is Request.InputStream not enough?

Remus Rusanu
Thats perfect. Thanks.
Zenox
A: 

Just as simple as the PHP one: File.ReadAllText(path)

n26