Asp.net MVC 中的 AjaxControlToolkit ModalPopup

发布于 2024-11-10 17:59:33 字数 579 浏览 4 评论 0原文

我有一个 DashBoard 视图。 单击 Assign 按钮时,ModalPopup 将打开,如下所示: PopUpView

用于打开 PopUp 的代码

$create(AjaxControlToolkit.ModalPopupBehavior, 
    { 
        "BackgroundCssClass": "modalBackground", 
        "DropShadow": false, 
        "OkControlID": 
        "OkButton", 
        "OnOkScript": "onOk()", 
        "PopupControlID": "div_to_popup", 
        "id": "PopUpBox" 
    }, null, null, $get("day"+a));

function onOk(){
  // what to write here to save data on server
}

I have a DashBoard view.
On clicking on Assign button a ModalPopup Opens like : PopUpView

Code for opening PopUp

$create(AjaxControlToolkit.ModalPopupBehavior, 
    { 
        "BackgroundCssClass": "modalBackground", 
        "DropShadow": false, 
        "OkControlID": 
        "OkButton", 
        "OnOkScript": "onOk()", 
        "PopupControlID": "div_to_popup", 
        "id": "PopUpBox" 
    }, null, null, $get("day"+a));

function onOk(){
  // what to write here to save data on server
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话难免假 2024-11-17 17:59:34

您可以使用 jQuery 您选择的插件

我建议完全不要将 Ajax Control Toolkit 与 ASP.NET MVC 一起使用,因为它既古老又有点老套,而且(更重要的是)主要针对 WebForms 开发。

You could probably do this with a jQuery plugin of your choice.

I would advise against using the Ajax Control Toolkit with ASP.NET MVC at all, since it is both old and kind of hacky to begin with, and (more importantly) heavily targeted against WebForms development.

南冥有猫 2024-11-17 17:59:34

这对我有用


$.ajax
({
类型:“帖子”,
url: "/Home/SaveEntry",
数据:{“savedata”:数据},
成功:成功函数,
错误:错误函数
});

`

function successFunction() { 
    alert('Inserted in Table successfully');
}

<代码>

function errorFunction(){
    alert('Some error occurred');
}

`
我的控制器

public void SaveEntry(string savedata)
{
string[] temp = result.Split('|');
GS_ALLOCATION 移位 = 新 GS_ALLOCATION();
shift.EMP_CODE = 小数.Parse(temp[0]);
shift.ALLOC_DATE = DateTime.Parse(temp[2]);
shift.TEAM_CODE = temp[3];
shift.WWL_WEEK = 临时[4];
shiftRepo.AddShift(shift);
}

This worked for me


$.ajax
({
type: "POST",
url: "/Home/SaveEntry",
data: { "savedata": data },
success: successFunction,
error: errorFunction
});

`

function successFunction() { 
    alert('Inserted in Table successfully');
}


function errorFunction(){
    alert('Some error occurred');
}

`
My Controller

public void SaveEntry(string savedata)
{
string[] temp = result.Split('|');
GS_ALLOCATION shift = new GS_ALLOCATION();
shift.EMP_CODE = decimal.Parse(temp[0]);
shift.ALLOC_DATE = DateTime.Parse(temp[2]);
shift.TEAM_CODE = temp[3];
shift.WWL_WEEK = temp[4];
shiftRepo.AddShift(shift);
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文