I have a simple form based on a model.
One of the features I have to support is the ability to create a url of the current paraments of the model. For example:
Form Begin
Model.Name
Model.Age
Form End
Then in javascript some how get:
http://Site/Controller/Action?Name=Bill&Age=45
Is there a helper that will take the current state and gen a Url?
The reason is that I need to be able to open a new window with the values of the model while leaving the form and page as is.