I've been using the new ASP.Net MVC 3 RemoteAttribute to send a remote call to an action method that had a single parameter. Now I want to pass in a second parameter using the AdditionalFields property:
[Remote("IsEmailAvailable", "Users", AdditionalFields = "InitialEmail")]
Where IntialEmail is a hidden field in the view. The action looks like so:
public JsonResult IsEmailAvailable(
string email,
string InitialEmail)
{
//etc.
}
When the view is rendered, the hidden field is populated, but when the Action method is triggered remotely, the value is an empty string.
I've seen elsewhere case sensitivity may be an issue, so I've ensured the Action method has the same case for both parameters.
Any other suggestions? This AdditionalFields used to be called Fields.
Thanks,
Beaudetious
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…