0
嗨,我有一個javasciprt會創建一個值,是我的任何方式捕捉我的c#後端代碼的價值。如何獲取JavaScript值從c#後端
function GetKey(){ return Key; } //key is a combination value
謝謝
嗨,我有一個javasciprt會創建一個值,是我的任何方式捕捉我的c#後端代碼的價值。如何獲取JavaScript值從c#後端
function GetKey(){ return Key; } //key is a combination value
謝謝
<script type="text/javascript"> var key = JSON.parse('<%=JsonConvert.SerializeObject(someObj.GetKey()) %>'); //now you can use key in your js logic </script>
C#
public String MyVariable;
MyVariable = "Some Value";
ASPX
<%=MyVariable %>
發送呼叫 –