0
[Remote("DropDownSelected", "Patient")]
public Guid SexIdentifier { get; set; }



public ActionResult DropDownSelected(object value)
{
    var x = ((Guid)value).ToString();
    string xsd = value.ToString();
    var abc = ControllerContext.Controller;

    if (value == null)
    {
        //value = string.Empty;
    }

    if (value.ToString() == Convert.ToString(Guid.Empty) || value.ToString() == string.Empty)
    {
        return Json(String.Format("0 does not exist."), JsonRequestBehavior.AllowGet);
    }

    return Json(true, JsonRequestBehavior.AllowGet);
}
4

1 に答える 1

0

プロパティが呼び出されSexIdentifierた場合、アクションは引数に同じ名前を使用する必要があります。

public ActionResult DropDownSelected(Guid sexIdentifier) 
{
    ...
}

また、ドロップダウンのデフォルト値がある場合は、null許容型を使用できますGuid

public ActionResult DropDownSelected(Guid? sexIdentifier) 
{
    ...
}
于 2012-08-15T09:30:15.890 に答える