-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Given multiple HTML checkboxes:
<input type="checkbox" name="catIDs" value="1" />
<input type="checkbox" name="catIDs" value="2" />
...
<input type="checkbox" name="catIDs" value="100" />
How do I retrive an array of integers from a FormCollection in an action:
public ActionResult…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an MVC 1.0 app with a form that works just fine.
The app also launches an SSRS using the URL ReportServer interface (**Not the Webform ReportViewer Control!). This also works just fine.
But if I export the generated SSRS report (say to .pdf), and then return to the MVC application, no…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I want to detect if a window form is open and if it is then I would like to bring it in front rather than opening it again.
I know I need a form collection for this but I want to know if there is a built in form collection that holds all the forms in VB.NET or I need to implement my own.
Thank…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I have a View where some input text to be added dynamica using jquery, I mean everything funzona, and when I go to add these inputs and do right button on the browser I'm not seeing the added input.
function addPerson () (
current + +;
StrToAdd var = '<table id="compo" name="compo"' +…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
public ActionResult Edit(int id, FormCollection formValues) {
07.
08. // Retrieve existing dinner
09. Dinner dinner = dinnerRepository.GetDinner(id);
10.
11. // Update dinner with form posted values
12. dinner.Title = Request.Form["Title"];
13. dinner.Description = Request.Form["Description"];
14…
>>> More