im new to mvc, in normal asp.net i could do this in a hearbeat but im still struggling to get my head around mvc!
basically im not using a DB for this application, its a simple tool that modifies large amounts of text and outputs it to the user.
because the amount of text is so large i want the user to be able to save and load the text they have entered by downloading a text file. ive figured out how to save it, but i just cant seem to find a way that works to load the text.
for this example however lets just work with a standard string as i know how to parse my save file and get the text into the appropriate strings. What i dont know is how to get these strings into the textboxes. There are no models that are attached to this as its not being validated or stored on the server.
View1 (how my textareas are laid out)
<label for="p1s1">Sentance 1:</label>
<%= Html.TextArea("p1s1", new { @class = "textbox" })%> <p>
Is it best to create a new view and then pass the paramaters into view1? im really stuck here!
Thanks in advance
