Click here to Skip to main content
15,888,301 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problem with MapPageRoute Pin
fjdiewornncalwe9-Nov-12 9:46
professionalfjdiewornncalwe9-Nov-12 9:46 
GeneralRe: Problem with MapPageRoute Pin
Jassim Rahma9-Nov-12 9:50
Jassim Rahma9-Nov-12 9:50 
Question{36D27C48-A1E8-11D3-BA55-00C04F72F325} failed due to the following error: 80010001 Call was rejected by callee. Pin
Member 95859818-Nov-12 23:55
Member 95859818-Nov-12 23:55 
AnswerRe: {36D27C48-A1E8-11D3-BA55-00C04F72F325} failed due to the following error: 80010001 Call was rejected by callee. Pin
jkirkerx10-Nov-12 20:09
professionaljkirkerx10-Nov-12 20:09 
QuestionHi friends i want to create a web application Pin
VinothData8-Nov-12 23:52
VinothData8-Nov-12 23:52 
Questionlarger file uploading issue Pin
silentspeaker8-Nov-12 3:17
silentspeaker8-Nov-12 3:17 
QuestionUnable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream' Pin
silentspeaker8-Nov-12 1:55
silentspeaker8-Nov-12 1:55 
AnswerRe: Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream' Pin
Richard Deeming8-Nov-12 2:26
mveRichard Deeming8-Nov-12 2:26 
I'm not sure how the error message could be any clearer:
  • the HttpPostedFile.InputStream property is a System.Web.HttpInputStream, which inherits from System.IO.Stream;
  • you are attempting to store it in a variable of type System.IO.FileStream, which is a different type of System.IO.Stream.


Change your fStream variable to be a System.IO.Stream:
VB
Dim fStream As Stream = FulFile.PostedFile.InputStream


Also, you're still not calling the GetResponse method on your requestFTP object. If you don't call that method, your request will never be sent.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream' Pin
silentspeaker8-Nov-12 2:34
silentspeaker8-Nov-12 2:34 
GeneralRe: Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream' Pin
Richard Deeming8-Nov-12 2:44
mveRichard Deeming8-Nov-12 2:44 
QuestionWCF Pin
sandeep81467-Nov-12 22:42
sandeep81467-Nov-12 22:42 
AnswerRe: WCF Pin
J4amieC7-Nov-12 22:44
J4amieC7-Nov-12 22:44 
QuestionCould not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Pin
arch067-Nov-12 19:47
arch067-Nov-12 19:47 
AnswerRe: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Pin
Shanalal Kasim7-Nov-12 22:08
Shanalal Kasim7-Nov-12 22:08 
AnswerRe: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Pin
Sentenryu7-Nov-12 23:12
Sentenryu7-Nov-12 23:12 
QuestionWant to close window.showModalDialog() popUp pressing ESC key but i've 100s of popUp. How can i change in a single place and all popup will close pressing ESC Key. Pin
rintoit7-Nov-12 18:11
rintoit7-Nov-12 18:11 
AnswerRe: Want to close window.showModalDialog() popUp pressing ESC key but i've 100s of popUp. How can i change in a single place and all popup will close pressing ESC Key. Pin
Sentenryu7-Nov-12 23:18
Sentenryu7-Nov-12 23:18 
QuestionCompleteWizardStep not working Pin
thes@int7-Nov-12 5:47
thes@int7-Nov-12 5:47 
AnswerRe: CompleteWizardStep not working Pin
jkirkerx7-Nov-12 13:25
professionaljkirkerx7-Nov-12 13:25 
QuestionHow to increase execution time Pin
silentspeaker7-Nov-12 2:48
silentspeaker7-Nov-12 2:48 
AnswerRe: How to increase execution time Pin
Keith Barrow7-Nov-12 3:15
professionalKeith Barrow7-Nov-12 3:15 
AnswerRe: How to increase execution time Pin
Sentenryu7-Nov-12 3:17
Sentenryu7-Nov-12 3:17 
GeneralRe: How to increase execution time Pin
silentspeaker7-Nov-12 19:56
silentspeaker7-Nov-12 19:56 
QuestionFTP Files Downloader Pin
silentspeaker7-Nov-12 1:34
silentspeaker7-Nov-12 1:34 
AnswerRe: FTP Files Downloader Pin
Deflinek7-Nov-12 23:05
Deflinek7-Nov-12 23:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.