小编Kom*_*ala的帖子

编译错误:两个DLL中都存在"ASP.global_asax"类型

我刚刚将另一个项目页面及其dll集成到我现有项目的Bin /文件夹中.我的项目框架是3.5.当我尝试构建项目或解决方案时,它会抛出以下错误:

"类型'ASP.global_asax'存在于'c:\ Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\timesheet\15a75c54\898b48b9\assembly\dl3\58b062b2\00ceda54_c98cc801\App_global.asax .DLL'和'c:\ Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\timesheet\15a75c54\898b48b9\App_global.asax.q_h6dbfx.dll'c:\ Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\timesheet\15a75c54\898b48b9\App_Web_admin.master.fdf7a39c.zecazgwd.0.cs"

将"batch = false"设置为web.config是行不通的.我还试图删除"c:\ Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files \"中的所有文件夹,然后清理并重建灵魂.但它仍然无法正常工作.

.net c# asp.net dll

67
推荐指数
3
解决办法
4万
查看次数

在ckeditor的工具栏上添加多个额外的插件

我想在ckeditor的工具栏上添加多个插件(我已创建).我在config.js中写了下面的代码

CKEDITOR.editorConfig = function( config ) {
    config.toolbar_Full =  [
        ['Styles', 'Bold', 'Italic', 'Underline', 'SpellChecker', 'Scayt', '-', 'NumberedList', 'BulletedList'],
        ['Link', 'Unlink'], ['Undo', 'Redo', '-', 'SelectAll'], '/', ['timestamp', '-', 'linkbutton']
    ];
    config.extraPlugins = 'linkbutton, timestamp';
};
Run Code Online (Sandbox Code Playgroud)

我有两个不同的自定义插件.但是不接受另一个插件.如何在一个工具栏上添加另一个插件?

javascript ckeditor

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

LINQ where子句中的三元运算符

我使用linq连接多个表并编写复杂的查询.这里,当我将有"0"的任何参数即CategoryId,GameId,LimitVariantId,这意味着用户已选择了"所有",从接口.

我的Sql查询,当我将参数值传递给大于'0'时:

select * from dbo.GameCombinations gc
inner join dbo.StakeBuyInByStakeCategories sbsc
on sbsc.StakeBuyInByStakeCategoryId = gc.StakeBuyInByStakeCategoryId
inner join dbo.GameTables gt
on gc.GameCombinationId = gt.GameCombinationId
where gc.CurrencyId=1 and gc.GameTypeId=2
and sbsc.StakeBuyInId=gt.BuyIn
and gc.CategoryId=4
and gc.GameId=7
and gc.LimitVariantId=23
and gc.StakeCategoryId in (3,5,6)
Run Code Online (Sandbox Code Playgroud)

当我将传递CategoryId 0然后我的Sql查询将是:

select * from dbo.GameCombinations gc
inner join dbo.StakeBuyInByStakeCategories sbsc
on sbsc.StakeBuyInByStakeCategoryId = gc.StakeBuyInByStakeCategoryId
inner join dbo.GameTables gt
on gc.GameCombinationId = gt.GameCombinationId
where gc.CurrencyId=1 and gc.GameTypeId=2
and sbsc.StakeBuyInId=gt.BuyIn
--and gc.CategoryId=4
and gc.GameId=7
and …
Run Code Online (Sandbox Code Playgroud)

c# linq sql-server-2008

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

检查包含null属性的int数组

我在int []中想要检查列表中的特定属性是否存在于数组中.这是我的财产,

public class WaitingLists
    {
        [Key]
        public Int32 Id { get; set; }
        public Guid UserId { get; set; }
        public Int32 GameTableId { get; set; }
        public Int32 WaitingListTypeId { get; set; }
        **public Int32 ? StakeBuyInId { get; set; }**
    }
Run Code Online (Sandbox Code Playgroud)

然后我想检查我的列表中是否存在StakeBuyInId.

这是Linq的代码,

public GameListItem[] GetMyWaitingList(Guid UserId, int[] WaitingListTypeIds, int[] StakeBuyInIds)
        {
            ProviderDB db = new ProviderDB();

            List<GameListItem> objtempGameListItem = new List<GameListItem>();

            List<GameTables> objGameTablesList = new List<GameTables>();

            var objWaitingListUser = db.WaitingLists.Where(x => x.UserId.Equals(UserId));
            if (WaitingListTypeIds != null) …
Run Code Online (Sandbox Code Playgroud)

c# linq

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

使用System.Json在.net 4.5中不存在

我复制了以下代码:

protected override bool CanWriteType(Type type)
        {
            // don't serialize JsonValue structure use default for that
            if (type == typeof(JsonValue) || type == typeof(JsonObject) || type == typeof(JsonArray))
                return false;

            return true;
        }

protected override bool CanReadType(Type type)
        {
            if (type == typeof(IKeyValueModel))
                return false;

            return true;
        }
Run Code Online (Sandbox Code Playgroud)

在这里,JsonValue,JsonObject,JsonArray,IKeyValueModel需要System.Json dll,它在.net 4.5框架中不可用.

我已经将nuget包更新到5.0,但仍然是那个dll不可用.任何人都可以直接给我dll或者可以给我System.Json dll的步骤?

我曾尝试使用Silverlight的System.Json.dll,但它根本不起作用

c# asp.net dll json asp.net-mvc-4

6
推荐指数
0
解决办法
3025
查看次数

抛出 CommunicationObjectAbortedException 后恢复回调通道

我们有用于扑克桌面游戏的(多个)客户端-(一个)服务器架构。我们正在使用回调通道使用回调通知。

但有时由于互联网连接中断,该特定客户端与服务器断开连接,该特定客户端的 WCF 通道也进入故障状态,位于服务器的回调通道也发生故障。

设想 :

该客户端正在玩游戏,而互联网连接断开,该游戏已停止,但他的游戏窗口仍然保持打开状态,当他/她的互联网连接恢复时,该客户端从服务器中退出,但该玩家的游戏窗口仍然打开,该玩家可以当他/她的 WCF 频道退出时,不要做任何事情。

我们希望在他/她从服务器退出并抛出“ CommunicationObjectAbortedException ”异常时关闭该特定客户端的窗口。

我们不能使用以前的 WCF 通道的回调通道,因为它处于故障状态。因此,我们尝试在使用以下代码删除的同时在服务器中创建新的 callbackChannel:

操作上下文。当前.GetCallbackChannel();

但是这里 Current 显示“ NULL ”,因为该播放器的 WCF 通道被中止,因此它抛出“对象引用未设置为对象实例”的错误。

那么是否有任何解决方案可以使用中止的 WCF 通道的回调通道或恢复该 WCF 通道而不重新初始化它们或使用新通道调用该客户端?

wcf nettcpbinding wcf-callbacks

5
推荐指数
1
解决办法
1204
查看次数

从javascript(调用API)返回包含对象(__ proto__)的坏json

我从javascript调用api,而api正在返回json.使用以下代码调用json:

document.ready(function(){
$.getJSON(url,
            function (data) {
               console.log(data);
               $("#test").text(data);
            });
        }
}); 

<p id="test"></p>
Run Code Online (Sandbox Code Playgroud)

但它只显示[Object] [object]页面.在console.log中,它返回json后无效,包括__proto__.

Object {author: "Hay House UK", title: "Top 15 Must-Read Books For 2014", text: "When a year ends, it’s like finishing a favorite b…elf-help slant conducive to healing planet Earth.", images: Array[2], date_created: "Wed, 01 Jan 2014 09:17:31 PST"…}
author: "Hay House UK"
categories: Object
business_finance: 0.039999999999999994
disaster_accident: 0.011428571428571427
education: 0.13887284818770693
entertainment_culture: 0.09647619047619045
environment: 0.08025982988254671
health_medical_pharma: 0.09809523809523808
hospitality_recreation: 0.04541137315797972
humaninterest: 0.04666666666666667
labor: …
Run Code Online (Sandbox Code Playgroud)

javascript jquery json

5
推荐指数
1
解决办法
3845
查看次数

在cakephp中搜索结果的分页

我已经实现了一个用户模型,我有一个简单的搜索表单,可以按性别,年龄,位置进行搜索.我正在使用paginator对结果进行分页.问题是它只记住第一页上的搜索条件.当我点击第2页或下一页等时.它默认返回搜索所有用户.

这是我的控制器中的脏搜索代码,基本上它只检查提交的表单字段并对Users表中的匹配字段进行查询,然后对结果进行分页:

if (!empty($this->data)) { 
    // by name 
    if (!empty($this->data['User']['search_name'])) { 
  $this->paginate = array('conditions' => array('visible'=>1, 
'OR'=>array( 
                'User.username LIKE' => '%'.$this->data['User']['search_name'].'%', 
                'User.firstname LIKE' => '%'.$this->data['User']['search_name'], 
                'User.lastname LIKE' => '%'.$this->data['User']['search_name']) 
                 ), 'limit'=>'10', 'order'=>'User.username'); 
   } 
   // by gender 
   else if (!empty($this->data['User']['search_gender'])) { 
  $this->paginate = array('conditions' => array( 
  'visible'=>1, 
                'User.gender' => $this->data['User']['search_gender'] 
                ), 'limit'=>'10', 'order'=>'User.username'); 
  } 
  // by state 
  else if (!empty($this->data['User']['search_state'])) { 
  $this->paginate = array('conditions' => array( 
  'visible'=>1, 
                'User.state' => $this->data['User']['search_state'] 
                ), 'limit'=>'10', 'order'=>'User.username'); 
  } 

   // Send the results for the above …
Run Code Online (Sandbox Code Playgroud)

cakephp cakephp-2.0

4
推荐指数
1
解决办法
4991
查看次数

在cakephp模型中的条件验证

我想要一个condtional validaiton,虽然更新我的密码字段是隐藏的,密码验证是'6到15'字符!所以密码以哈希格式存储在数据库中,因此不允许我更新.我的型号代码如下,

<?php
class User extends AppModel {

    public $belongsTo = array(
        'Group',
        'City',
        'Area',
    );

    public $validate = array(
        'name' => array(
            'rule'     => 'alphaNumeric',
            'required' => true,
            'message'  => 'Only alphabets and numbers are allowed!'
        ),
        'email' => array(
            //~ 'rule1' => array(
                //~ 'rule' => 'isUnique',
                //~ 'message' => 'Email address already exists!',
                //~ 'last' => true
            //~ ),
            'rule2' => array(
                'rule' => 'email',
                'message' => 'Invalid Email!',
                'last' => true
            )
        ),
        //~ 'password' => …
Run Code Online (Sandbox Code Playgroud)

cakephp cakephp-2.0

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