Click here to Skip to main content
15,881,757 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Having difficulty with an MVC question Pin
Vincent Maverick Durano5-Dec-18 15:07
professionalVincent Maverick Durano5-Dec-18 15:07 
QuestionDebugging a Web API Project in Visual Studio 2017 Pin
Dominick Marciano26-Nov-18 5:13
professionalDominick Marciano26-Nov-18 5:13 
AnswerRe: Debugging a Web API Project in Visual Studio 2017 Pin
maryam.saboor4-Dec-18 23:36
professionalmaryam.saboor4-Dec-18 23:36 
QuestionHow to write Edit Item template in asp.net with sql command Pin
Member 1362771923-Nov-18 22:19
Member 1362771923-Nov-18 22:19 
QuestionList is losing it's contents ? Pin
caffrey_123-Nov-18 2:37
caffrey_123-Nov-18 2:37 
AnswerRe: List is losing it's contents ? Pin
Richard MacCutchan23-Nov-18 2:46
mveRichard MacCutchan23-Nov-18 2:46 
GeneralRe: List is losing it's contents ? Pin
caffrey_123-Nov-18 3:01
caffrey_123-Nov-18 3:01 
AnswerRe: List is losing it's contents ? Pin
Richard Deeming23-Nov-18 3:32
mveRichard Deeming23-Nov-18 3:32 
Values stored in fields are not persisted between requests. This is a common misunderstanding of how ASP.NET works.

The browser makes a request. ASP.NET creates a new instance of your page class, and loads any data that was included in the request via the query-string or a form POST. The page then processes the request, and generates a response. The response is sent to the browser, and the instance of your page class is thrown away.

When the browser makes its next request, it's processed by a new instance of your page class, which doesn't carry over any of the field values from the previous instance.

To make data persist between requests, it either needs to be stored in the session, or included in the query-string or form POST data for the next request. The standard approach for data that only relates to a single page is to use view state.

Understanding ASP.NET View State[^]


NB: Judging by the variable names, you've also hit another common misunderstanding about how file uploads work. The FileName property is the path - or sometimes just the name - of the file on the user's computer. It is included for information only. Your code is running on the server, and has no access to that path.

Instead, you need to save the file somewhere on the server, or read the file data from the input stream and process it.

How to: Upload Files with the FileUpload Web Server Control[^]



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

GeneralRe: List is losing it's contents ? Pin
caffrey_123-Nov-18 4:05
caffrey_123-Nov-18 4:05 
GeneralRe: List is losing it's contents ? Pin
Richard Deeming23-Nov-18 4:13
mveRichard Deeming23-Nov-18 4:13 
GeneralRe: List is losing it's contents ? Pin
caffrey_123-Nov-18 4:45
caffrey_123-Nov-18 4:45 
QuestionRDLC Report is not showing Column Headers in all the pages Pin
simpledeveloper20-Nov-18 14:30
simpledeveloper20-Nov-18 14:30 
AnswerRe: RDLC Report is not showing Column Headers in all the pages Pin
Richard Deeming21-Nov-18 8:07
mveRichard Deeming21-Nov-18 8:07 
QuestionCSV and WordPress Pin
Davstr19-Nov-18 13:23
Davstr19-Nov-18 13:23 
AnswerRe: CSV and WordPress Pin
Mycroft Holmes20-Nov-18 11:16
professionalMycroft Holmes20-Nov-18 11:16 
QuestionKilling a remote application browser session from a new browser session. Pin
Stephen Holdorf18-Nov-18 4:22
Stephen Holdorf18-Nov-18 4:22 
AnswerRe: Killing a remote application browser session from a new browser session. Pin
Richard Deeming19-Nov-18 3:00
mveRichard Deeming19-Nov-18 3:00 
QuestionoData request to REST server Pin
RVMRVM17-Nov-18 8:48
RVMRVM17-Nov-18 8:48 
QuestionRe: oData request to REST server Pin
Richard MacCutchan17-Nov-18 21:09
mveRichard MacCutchan17-Nov-18 21:09 
AnswerRe: oData request to REST server Pin
RVMRVM17-Nov-18 23:01
RVMRVM17-Nov-18 23:01 
QuestionNeed some suggestion - please Pin
simpledeveloper16-Nov-18 13:14
simpledeveloper16-Nov-18 13:14 
QuestionAutomatic update db on regular intervals mvc Pin
Member 1402506315-Nov-18 18:10
Member 1402506315-Nov-18 18:10 
AnswerRe: Automatic update db on regular intervals mvc Pin
Member 1405668819-Nov-18 18:18
Member 1405668819-Nov-18 18:18 
GeneralRe: Automatic update db on regular intervals mvc Pin
Member 1402506319-Nov-18 18:37
Member 1402506319-Nov-18 18:37 
AnswerRe: Automatic update db on regular intervals mvc Pin
Nathan Minier20-Nov-18 1:37
professionalNathan Minier20-Nov-18 1:37 

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.