ViewBag附加在Onclick Button MVC中

时间:2016-03-30 11:13:39

标签: javascript html asp.net-mvc

我需要从viewbag中检索字符串值并使用javascript函数附加它。

<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand(@ViewBag.Address1+'/io.cgi?DOA1=20');">

我在此模式下从控制器加载ViewBag值:

 ViewBag.Address1 = ConfigurationManager.AppSettings["Cucina1Address"];

我在onclick中需要的结果如下:

<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand('192.168.0.1/io.cgi?DOA2=20');">

由于

1 个答案:

答案 0 :(得分:0)

您可以尝试以下操作:

<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand('@(ViewBag.Address1)/io.cgi?DOA2=20');">