小编Jam*_*123的帖子

如何制作jQuery对话框模态?

我在asp.net中使用jQuery对话框.它对我来说很好.问题是当我打开对话框时,我仍然可以使用父页面功能.我不希望这样.只需对话框模态,不应该让焦点放在父页面上.

window.onload = function onloadFunction() {

        //setup edit person dialog
     $('#uploadPic').dialog({
             autoOpen: false,
             draggable: true,
             title: "Upload Picture",
             open: function(type, data) {
                 $(this).parent().appendTo("form");
             }
         });
     }
Run Code Online (Sandbox Code Playgroud)

有没有办法让它模态?或者如果丢失焦点对话框自动关闭它?

请帮帮我.

javascript asp.net jquery jquery-ui modal-dialog

9
推荐指数
1
解决办法
2万
查看次数

发布到 IISServer 时如何更改 HostingModel="OutOfProcess"?

我在 VS 调试窗口中将 HostingModel 设置为“进程外”。但是当将项目发布到我的开发服务器时。web.config 文件始终显示hostingModel="inprocess"。如果我删除此属性,我可以运行该应用程序。

发布时是否有任何流程我们更改hostingModelOutOfProcess. 我正在使用 ASP.Net Core 3.1 版本的 WebAPI

在此输入图像描述

c# visual-studio asp.net-core

9
推荐指数
3
解决办法
1万
查看次数

使用RunWithElevatedPrivileges时拒绝访问?

我希望普通用户可以访问Mysite根站点中的"用户信息列表".我正在使用"RunWithElevatedPrivileges"方法.仍然抛出访问被拒绝错误.每个例子我的mysite的根网站集是" http://network.test.com ".用户想要评估此网站集的用户信息列表.他怎么能访问那个?

 SPSecurity.RunWithElevatedPrivileges(delegate
 {
   using (SPSite site = new SPSite(SPContext.Current.Web.Site.ID))
   {

   ServerContext sc = ServerContext.Current;
   UserProfileManager upm = new UserProfileManager(sc);
   UserProfile up = null;
   //get current user's profile (visitor)
   if (upm.UserExists(SPContext.Current.Web.CurrentUser.LoginName))
   {
       up =upm.GetUserProfile(SPContext.Current.Web.CurrentUser.LoginName);

      SPWeb web = SPContext.Current.Web;
      SPList userInformationList = web.Lists["User Information List"];
Run Code Online (Sandbox Code Playgroud)

c# asp.net sharepoint mysite

8
推荐指数
2
解决办法
6978
查看次数

Window.open作为模态弹出窗口?

我想打开window.open模态弹出窗口.

 var features = 'resizable= yes; status= no; scroll= no; help= no; center= yes;
 width=460;height=140;menubar=no;directories=no;location=no;modal=yes';
    window.open(href, 'name', features, false);
Run Code Online (Sandbox Code Playgroud)

我可以使用Window.ShowModelDialog(),但在我的子窗口中,我调用父javascript方法.ShowModelDialog()没有发生这种情况.

 function CallParentScript(weburl) {
       alert(weburl);
       if (weburl != null) {
           var url = weburl;

            window.opener.SelectUserImageCallback(url);
            window.close();
            return false;
       }
   }
Run Code Online (Sandbox Code Playgroud)

如果我使用window.open().我可以调用Parent javascript.但窗口不是模态的.

怎么解决这个?我可以在子弹出窗口中写一些东西吗?

javascript css asp.net

8
推荐指数
2
解决办法
10万
查看次数

如何自动验证Windows集成而无需登录弹出窗口?

我用default.aspx写了一个asp.net应用程序.当我点击此页面时,它询问我的Windows登录弹出窗口.我的应用程序应该我需要Windows身份验证,但它应该"集成Windows身份验证".如果我输入登录密码,我可以看到我的页面.

如何自动集成此Windows身份验证?

我在web.config中添加了以下代码.仍然无法正常工作.

<authentication mode="Windows"/>
    <identity impersonate="false"/>
    <authorization>
        <deny users="?"/>
    </authorization>
Run Code Online (Sandbox Code Playgroud)

替代文字

c# asp.net iis

8
推荐指数
1
解决办法
2万
查看次数

如何用字符串中的双撇号替换撇号?

我有一个字符串

good overview of ESP's in more detail than you probably need.

插入SQL表时会出错.所以我想用双撇号替换字符串中的撇号

good overview of ESP''s in more detail than you probably need

如何在c#中操作它?

c# sql

7
推荐指数
2
解决办法
3万
查看次数

不在SQL语句中?

我在excel中设置了大约5000个ID,在表格中我有大约30000个ID.如果我在SQL语句中使用"In"条件,那么我从Excel中获得了大约4300个ID.但是,如果我使用Excel ID中的"Not In".我已经获得了大约25000多条记录.我只是想知道我在表中缺少Excel ids.

如何为此编写sql?

示例:Excel ID是

 1,
 2,
 3,
 4,
 5,
 6,
 7,
 8,
 9,
10,
Run Code Online (Sandbox Code Playgroud)

表有ID

 1,
 2,
 3,
 4,
 6,
 8,
 9,
11,
12,
14,
15
Run Code Online (Sandbox Code Playgroud)

现在我想5,7,10从Excel中获取缺少表格的值?

更新:

我在做什么

SELECT  [GLID]      
  FROM [tbl_Detail] 
  where datasource = 'China' and  ap_ID  not in (5206896,
5206897,
5206898,
5206899,
5117083,
5143565,
5173361,
5179096,
5179097,
5179150)
Run Code Online (Sandbox Code Playgroud)

sql t-sql sql-server set-difference notin

7
推荐指数
2
解决办法
4万
查看次数

'Field'不是'System.Data.DataRow'的成员

我正在使用VS2005 for vb.net.我在下面的语句中收到编译错误.如何解决这个问题?

    For Each rw As DataRow In data.Rows
        For Each dc As DataColumn In stringColumns
            rw.Field(Of String)(dc).Replace("_x00D_", "") //Error showing here
        Next
    Next
Run Code Online (Sandbox Code Playgroud)

c# vb.net

7
推荐指数
2
解决办法
9413
查看次数

用于MVC4的jQuery datatables bundleconfig?

Nuget在VS 2012中的单独文件夹中安装jQuery DataTables -1.9.4.参见图片.如何将它们与现有的bundleConfig捆绑在一起?在此输入图像描述

我目前的捆绑是

bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                        "~/Scripts/jquery-{version}.js"));
   bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
                    "~/Scripts/jquery-ui-{version}.js"));
   bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                        "~/Scripts/jquery.unobtrusive*",
                        "~/Scripts/jquery.validate*"));
   bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
                        "~/Scripts/modernizr-*"));
   bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
   bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
                        "~/Content/themes/base/jquery.ui.core.css",
                        "~/Content/themes/base/jquery.ui.resizable.css",
                        "~/Content/themes/base/jquery.ui.selectable.css",
                        "~/Content/themes/base/jquery.ui.accordion.css",
                        "~/Content/themes/base/jquery.ui.autocomplete.css",
                        "~/Content/themes/base/jquery.ui.button.css",
                        "~/Content/themes/base/jquery.ui.dialog.css",
                        "~/Content/themes/base/jquery.ui.slider.css",
                        "~/Content/themes/base/jquery.ui.tabs.css",
                        "~/Content/themes/base/jquery.ui.datepicker.css",
                        "~/Content/themes/base/jquery.ui.progressbar.css",
                        "~/Content/themes/base/jquery.ui.theme.css"));
Run Code Online (Sandbox Code Playgroud)

jquery datatables nuget asp.net-mvc-4

7
推荐指数
1
解决办法
5129
查看次数

添加jquery.unobtrusive-ajax.js引用后,Upload为null

如果我不参考,jquery.unobtrusive-ajax.js我可以在邮政上获得附件.如果我引用它它会给我null.

<script src="~/Scripts/jquery.unobtrusive-ajax.js"></script>


@using (Ajax.BeginForm("Index", "ContactSubmission", new AjaxOptions{ InsertionMode = InsertionMode.Replace, HttpMethod = "POST", OnSuccess = "updateSuccess" },
     new { enctype = "multipart/form-data",@class = "form-horizontal", role = "form" }))
      {
               ///code here
Run Code Online (Sandbox Code Playgroud)

}

[HttpPost]
public JsonResult Index(Contact contact)
{
    if (ModelState.IsValid)
    {
       if (contact != null)
       {
         string attachment = string.Empty;
         // HttpPostedFileBase Attachment
         if (contact.Attachment != null) attachment = SaveFile(contact.Attachment); 
                ......
Run Code Online (Sandbox Code Playgroud)

怎么办呢?

c# ajax asp.net-mvc jquery unobtrusive-ajax

7
推荐指数
2
解决办法
2400
查看次数