JavaScript参数的页面函数?

时间:2013-03-06 20:49:11

标签: c# asp.net

我的aspx中有这个JS:

 var calendar = $('#calendar').fullCalendar({
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: ''
                },
                defaultView: 'resourceNextWeeks',
                numberOfWeeks: <%# GetNumWeeks() %>,
...

在我的网页上的cs:

   public string GetNumWeeks()
        {
            return "2";
        }

但它没有做任何事......

还有其他办法吗?

由于

2 个答案:

答案 0 :(得分:2)

尝试将代码更改为:

numberOfWeeks: <% =GetNumWeeks() %>

答案 1 :(得分:0)

为什么要使用代码。您可以创建另一个函数并调用该函数 对

var calendar = $('#calendar').fullCalendar({
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: ''
                },
                defaultView: 'resourceNextWeeks',
                numberOfWeeks: GetNumWeeks() ,
...


.
.
.

function GetNumWeeks()
        {
            return "2";
        }

编辑:

或 您可以使用WebMethod

请参阅 this sample :