asp.net – 通过javascript从代码后面访问变量

前端之家收集整理的这篇文章主要介绍了asp.net – 通过javascript从代码后面访问变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码,我想在javascript中返回变量“t”:

代码背后:

Public Shared Function GetSomeText() As String
  Dim result = "This is from code behind"
  Return result
End Function

javascript中的调用者变量:

//This is not working like that,I think
    var t = GetSomeText();

那么,我怎样才能使变量“t”从代码隐藏中获取函数GetSomeText的“结果”?

谢谢.

解决方法

试试这个 – 假设这是页面上的公共方法.这将在页面类上调用方法GetSomeText(),然后在呈现页面时对页面执行Response.Write().结果应该在javascript中的单引号之间结束.
var t = '<%= GetSomeText() %>';
原文链接:https://www.f2er.com/aspnet/251378.html

猜你在找的asp.Net相关文章