问题列表 - 第17742页

是否有可能存在PHP.NET?

对不起,如果这是一个愚蠢和/或愚蠢的问题但是......会不会有,或者甚至可能有PHP.NET?或者我得到了错误的结束?

在我看来,.NET的一个要点是你可以用一堆.NET语言中的一种来编写你的代码并将它编译成CLR.这可能发生在PHP上,还是有一些关于PHP的东西让这个变得不可能?还是有更多的政治原因?还是只是一个迟钝的想法?

.net php clr

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

自我是指针吗?

什么样的东西self?称它为指针是否正确?或者它是变量?还有什么?

iphone cocoa cocoa-touch objective-c

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

在字符串中查找第n个子字符串

这似乎应该是非常简单的,但我是Python的新手,并希望以最Pythonic的方式做到这一点.

我想在字符串中找到第n个子字符串.

必须有一些与我想做的事情相同的东西

mystring.find("substring", 2nd)

你怎么能用Python实现这个目标?

python string substring

107
推荐指数
8
解决办法
15万
查看次数

哪两个查询会更快?

SELECT * FROM table WHERE col IN (1,2,3)
Run Code Online (Sandbox Code Playgroud)

要么

SELECT * FROM table WHERE col = 1 OR col = 2 OR col = 3
Run Code Online (Sandbox Code Playgroud)

sql query-optimization

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

在MVC中实现自定义标识和IPrincipal

我有一个基本的MVC 2 beta应用程序,我正在尝试实现自定义Identity和Principal类.

我创建了实现IIdentity和IPrincipal接口的类,实例化它们,然后将CustomPrincipal对象分配给Global.asax的Application_AuthenticateRequest中的Context.User.

这一切都成功,对象看起来很好.当我开始渲染视图时,页面现在失败了.第一个失败是在以下代码行的默认LogoOnUserControl视图中:

 [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ]
Run Code Online (Sandbox Code Playgroud)

如果我把它拉出来,那么就会失败一个不同的"Html.ActionLink"代码行.

我收到的错误是:

WebDev.WebHost40.dll中出现"System.Runtime.Serialization.SerializationException"类型的异常,但未在用户代码中处理

附加信息:成员'Model.Entities.UserIdentity,Model,Version = 1.0.0.0,Culture = neutral,PublicKeyToken = null'的类型未解析.

为了在MVC中使用自定义标识,我是否需要在Identity中实现一些其他属性?我试图在Identity类中实现[Serializable()]但它似乎没有影响.

更新: 我尝试了3-4种实现此方法的替代方法但仍然失败并出现相同的错误.如果我直接使用GenericIdentity/GenericPrincipal类,则不会出错.

GenericIdentity ident = new GenericIdentity("jzxcvcx");
GenericPrincipal princ = new GenericPrincipal(ident, null);
Context.User = princ;
Run Code Online (Sandbox Code Playgroud)

但是这让我无处可去,因为我试图使用CustomIdentity来保存一些属性.如果我实现了IIdentity/IPrincipal接口或继承了我的CustomIdentity/CustomPrincipal的GenericIdentity/GenericPrincipal,它将失败并显示上面的原始错误.

iprincipal iidentity asp.net-mvc-2

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

从Reporting Services呈现到PDF时发生错误

我在MS报告服务中有一个报告,可以在屏幕上呈现良好状态(通过报告服务Web界面查看报告时),但是当我将其导出为PDF时,它会出错.

尝试通过Web服务访问报表时显示以下YSOD,但从报表服务Web界面渲染为PDF时报表也出错.

关于如何追踪导致此问题的原因的任何想法?

Server Error in '/****' Application.
--------------------------------------------------------------------------------

An error occurred during rendering of the report. ---> Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException: An error occurred during rendering of the report. ---> Microsoft.ReportingServices.OnDemandReportRendering.ReportRenderingException: An error occurred during rendering of the report. ---> System.NullReferenceException: Object reference not set to an instance of an object. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. …
Run Code Online (Sandbox Code Playgroud)

export-to-pdf reporting-services

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

获取PATH_INFO的便携且安全的方法

我正在寻找一种便携式方式来接收(方便)$_SERVER['PATH_INFO']变量.

看了一会儿后,结果发现PATH_INFO是CGI/1.1,而且并不总是出现在所有配置中.

获得该变量的最佳方式(主要是安全方式)是什么 - 除了手动提取它(安全问题).

php pathinfo

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

使用ref参数委托

有没有办法在下面的代码中保持相同的功能,但无需创建委托?我正在与包含许多各种DeleteSomethingX(ref IntPtr ptr)方法的第三方API接口,我正在尝试集中IntPtr.Zero检查的代码.

private void delegate CleanupDelegate(ref IntPtr ptr);

...

private void Cleanup(ref IntPtr ptr, CleanupDelegate cleanup)
{
    if (ptr != IntPtr.Zero)
    {
        cleanup(ref ptr);
    }
}
Run Code Online (Sandbox Code Playgroud)

.net c# delegates pointers ref

11
推荐指数
1
解决办法
5947
查看次数

Windows echo命令无法回显用户设置变量

搞砸我的CMD shell怎么办?Windows XP Pro,打开一个cmd窗口并执行:

C:\>set tt = name

C:\>set tt
tt = name

C:\>echo %tt%
%tt%

C:\>echo %time%
14:13:28.67
Run Code Online (Sandbox Code Playgroud)

echo命令由于某种原因不起作用.我可以很好地回应内置变量.在另一台计算机上试用它,并按预期工作

windows cmd batch-file environment-variables windows-console

16
推荐指数
3
解决办法
5万
查看次数

HTML敏捷包

我正在尝试使用HTML Agility Pack从以下内容中获取描述文本:

<meta name="description" content="**this is the text i want to extract and store in a string**" />
Run Code Online (Sandbox Code Playgroud)

不久前有人在Stackoverflow上建议我使用HTMLAgilityPack.但我不知道如何使用它,我找到的文档(包括下载中包含的文档)都有无效的链接,因此无法查看文档.

有人可以帮我解决这个问题吗?

html c# parsing winforms html-agility-pack

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