从jstorage调用函数后面的C#代码

时间:2013-09-18 04:43:23

标签: c# javascript jstorage

我使用以下代码使用jstorage存储数据。我可以理解什么是load_data_from_server()。请帮我从jstorage

调用函数后面的代码
<script src="prototype.js"></script>
<script src="jstorage.js"></script>
<script>
// Check if "key" exists in the storage
var value = $.jStorage.get("key");
if(!value){
    // if not - load the data from the server
    value = "hai";
    value = load_data_from_server() //I want to call c# code behind function here
    // and save it
    $.jStorage.set("key",value);
}
</script>

0 个答案:

没有答案