使用参数

时间:2015-08-15 11:12:33

标签: javascript c# jquery asp.net kendo-ui

我需要使用参数调用codebehind函数,该参数是aspx页面中脚本标记的某些Entity类的实例。我使用kendotemplate从kendo ui创建了弹出窗口,在这个模板中我需要我的表单,其中包含输入和后面代码中使用的按钮。像这样的http://demos.telerik.com/kendo-ui/grid/custom-command但是当我向模板标签添加asp项目时,对我来说不起作用。

我的实体:

public class Person
{
    public string FirstName{ get; set; }
    public string LastName{ get; set; }
    public int Age { get; set; }
}

功能背后的代码:

protected void btnAddPerson_Click(object sender, EventArgs e)
    {
        Person p= new Person();
        // get values from three inputs
        p.FirstName= personFirstName.Value;
        p.LastName= personLastName.Value;
        p.Age = Convert.ToInt32(personAge.Value);
        ...
    }

我在javascript中需要这样的东西:

<script type="text/x-kendo-template" id="template">
            <Asp:Input ...>
    <Asp:Input ...>
    <Asp:Input ...>
    <Asp:Button ...>
</script>

抱歉我的英文

0 个答案:

没有答案