I have this code,need convert to C#.net..
<form method="POST" enctype="multipart/form-data" method="">
<input type="file" name="file">
<input type="submit">
<?
if(!empty($_FILES["file"]))
echo file_get_contents($_FILES["file"]["tmp_name"]);
?>
thanks!
It’s like ↓