最新评论

共4页: 1 2 3 4 下一页 
毛寅珅 2012-02-12 20:27
谢谢!很喜欢这样的方法比对的文章。
伤害过的还很远 2012-02-09 10:35
这位大哥 可以请教下db2 的递归 怎么使用 你这边是使用单个表 !如果 有7 、8 个表关联起来 那该怎么来实现呢!我刚接触db2 太多不懂了 联系下我好吗 ?邮箱 ajerrylong@163.com QQ:785624295 谢谢啦!
虚天鼎 2012-01-12 11:52
好用!
Web打印 2011-09-20 18:10
这样修改在VS2008还是不行,后来我自己做了一个控件才解决这个问题。 我所做的控件的演示地址:[url]http://www.xinyuerj.com/ASP.NET/[/url]
仙道男 2011-07-23 11:39
果断给力!
施主你不要装 2010-09-04 15:19
如果账户来源不使用sql server, 而是来源于Oracle, 行吗?
Douglasyang 2010-08-27 20:49
再申请一个!!!
路过秋天 2010-08-23 14:50
支持一下!
你不会了解 2010-08-05 10:41
原来这么简单啊,我老是读不到指定资源 十分感谢楼主
李璞 2010-08-05 00:51
参考这里 : http://cooleep.com/2010/07/22/172/ 问题2的解决办法.
茗 2010-06-13 23:04
Super Duper Deep helpful! I GREATLY appreciate your flashplayer. Grace
毁于随 2010-04-12 23:51
哥们,你也是搞Documentum的吗? 可否加个好友一起聊聊这个平台?
彷徨...... 2010-01-27 13:44
相关字体: http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3&displaylang=en
王彬彬 2009-12-10 09:09
感谢,收藏
xioxu 2009-12-07 22:50
有的地址好像不全,今天又发现了这个 http://online1.tingclass.com/flash/1634/27-01.swf
温景良(Jason) 2009-10-28 21:27
不错,谢谢
xioxu 2009-10-25 23:33
程序默认给的下载网站有的视频不全,可以试试这个网站的地址 http://218.26.177.57/study/english/nec/nec2/08-03.swf
彷徨...... 2009-10-12 13:56
It doesn't matter whether it's transitive or not (because you only have two forests, not three or more); the critical issue is whether it's a real forest trust or just a horrible old external trust. When you create a forest trust, AD sets up name-suffix routing rules that help it to route each SPN to the appropriate forest. So, when a client asks for a Kerberos service ticket to an SPN in a different forest, AD has the information that it needs to successfully generate Kerberos referrals to the appropriate forest. The result is that cross-forest Kerberos (and SPNEGO) works fine if you use a forest trust. By contrast, when you create an external trust, AD does not maintain the information that would be necessary to route SPNs across the trust, so Kerberos / SPNEGO gets "service not found in Kerberos database" and the client reverts to NTLM. That would be OK for some customer scenarios (and VSJ 3.3 patch 3463 adds support for handling external trusts that revert to NTLM), but in your case you're using only Kerberos/SPNEGO, not NTLM, so the answer pretty much boils down to: use a forest trust. (If you were desperate enough it _might_ be possible to make the external-trust case work with SPNEGO by, er, creatively setting up parallel service accounts in each forest with equivalent passwords and SPN mappings -- and carefully using RC4, not DES or AES -- but that's a pretty perverse configuration).
xioxu 2009-09-10 17:06
之前在服务器上安装了windbg,在cpu高点时运行adplus.vbs -hang -pn w3wp.exe -o d:\ops\以产生dump文件, 如果没有条件的朋友,可以使用系统自带的ntsd来产生,如 ntsd -pv -pn w3wp.exe -logo d:\out.txt -lines -c ".dump /ma d:\testlocal.dmp;q"
Anthan 2009-07-22 13:13
原来的程序在32位系统上运行一切正常,为了提高性能把服务器升级到64位后出现了问题,代码如下: [code=csharp] /// <summary> /// 加载报表 /// </summary> private void LoadReport() { string path =Server.MapPath(".")+"\\Report.rpt"; //判断报表文件是否存在 if (!File.Exists(path)) { throw new Exception("没有这个文件"); } if(!rd.IsLoaded) { rd.Load(path); #region 获取数据 DataSet ds =new DataSet(); PefManageMain PM=(PefManageMain)eHRPageServer.GetPalauObject(typeof(PefManageMain)); ds =PM.GetReportByPersonList(_personid,int.Parse(_year)); #endregion #region 设置报表参数 string connstr =this.GetConnectionString(); string[] arr =this.GetUserNameAndPwd(connstr); string username = arr[3]; string pwd=arr[5]; rd.SetDatabaseLogon(username,pwd); rd.SetParameterValue("personid",_personid); rd.SetParameterValue("year",_year); #endregion rd.SetDataSource(ds.Tables[0]); crvWeekReport.ReportSource = rd; crvWeekReport.DataBind(); } crvWeekReport.HasRefreshButton=false; crvWeekReport.DisplayGroupTree=false; crvWeekReport.HasToggleGroupTreeButton=false; crvWeekReport.HasSearchButton = false; crvWeekReport.HasDrillUpButton = false; crvWeekReport.HasToggleGroupTreeButton = false; } [/code] 报错信息如下: Unknown Query Engine Error Error in File C:\WINDOWS\TEMP\{637CB6F9-2247-40F7-B8CB-F86646CE2C79}.rpt: Unknown Query Engine Error Stack: at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) at CrystalDecisions.CrystalReports.Engine.ReportDocument.(Object X) at CrystalDecisions.CrystalReports.Engine.ReportDocument.SetDataSource(DataSet dataSet) at BenQGuru.eHR.PresentationLayer.ePerformance.PerformanceManage.PrintManageReport.LoadReport() at BenQGuru.eHR.PresentationLayer.ePerformance.PerformanceManage.PrintManageReport.Page_Load(Object sender, EventArgs e) at System.EventHandler.Invoke(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at BenQGuru.eHR.PresentationLayer.eHRBasePage.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain()
3183308 2009-06-23 14:49
大侠,

百忙中帮我想想啊-邮件转发问题



谢谢
3183308 2009-06-23 14:45
没学过编程,看不懂啊。

请指点一下具体怎么操作。

我公司用Exchange 服务器,

我想把新邮件都转发到Gmail信箱。不要附件,只要邮件正文。

谢谢!

彷徨...... 2009-06-21 23:23
谢谢 enheng 的提醒,我把文件是放到了国外的一个共享网站上了,可能这两天刚好不能访问了吧, 现在临时可以从第二个链接上下载。
enheng 2009-06-20 22:31
怎么下载不了呢?网页链接都打不开。
彷徨...... 2009-06-17 10:40
哦,zzflash? 我以前还真没发现啊,刚大概看了下简介,好像不错的样子,晚上回去我试试看。 刚刚试了,哈哈,还真不错,比我做的功能强大。不过感觉还是我这个量身定做的更适合自己,譬如我就喜欢播放完一个后,自动切换到下一个,我也希望能有播放的历史记录,这些zzflash也很容易做到,但你要等到人家同意你的请求然后再做这个修改,那恐怕太难了。另外,小小的敝帚自珍一下下,我怎么感觉我这个界面比那个好看呢?哈哈,玩笑,真的,zzflash也很不错,尤其还提供了记笔记的功能,挺周到。
lwd 2009-06-06 08:57
在查询分析器内运行有语法错误
xioxu 2009-06-04 18:29
qq播放器么? 我一直用的是Kmplayer,都没有用过这个,不过我估计我做的有几个功能它还是没有, 就是flash开始播放后,使用一般播放器的话,有的教程就一直停在了第一帧上边,我这个对此种情况也做了处理。
呵呵,总之我就是一旦开始播放后,尽可能不用其他操作就可以连续的播放。

今天又传了个新版本,修改了 关于屏幕保护的一个Bug。
隨風.NET 2009-06-04 05:41
这个好像qq播放器都支持的哦
YoungSin 2009-05-08 08:58
呵呵,多谢了,这个东西很有用,特别是2003的版本!
彷徨...... 2009-05-07 17:42
您好,多谢提醒,我都忘了什么时候给修改的不见2003对应版本了,刚刚已经放上了,再有什么问题请联系。
fayth1982 2009-04-22 15:47
我查找到crystalprinthost.html这个文件在
C:\Program Files\Common Files\Crystal Decisions\2.5\crystalreportviewers10\html
文件加下 照你说的做了
还是不行!
我也是用的VS2005,是不是我的WEB.CONFIG寫得有問題 我是這樣寫的
<configSections>
<sectionGroup name="businessObjects">
<sectionGroup name="crystalReports">
<section name="printControl" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"/>
</sectionGroup>
</sectionGroup>
</configSections>
<businessObjects>
<crystalReports>
<printControl>
<add key="url" value="http://localhost/LRERP/Include/PrintControl.cab"/>
</printControl>
</crystalReports>
</businessObjects>
可加我的SKP 用戶名: fayth1982
xioxu 2009-04-10 23:32
你说的管理员是指site的管理员么? 这个要在ca中来设置,然后使用该账户登录你的site上就可以添加其他的用户了。
xep.com@163.com 2009-04-08 15:37
但是管理员怎么加呀  谢谢
allanwx 2009-03-09 00:42
最近学习时这个地方遇到阻力,很有帮助!谢谢!
天使の泪 2009-02-13 00:21
@rexleed
--引用--------------------------------------------------
rexleed: Hi,
sorry to bother you again...
my account on powerlink was disabled again, it's said that my account 's limited by my client's security policy(my account is from the client), I have to wait to pass the security check...
so... could you please help me download content server 6.5 SP1....
I got composer 6.5sp1 and webtop6.5 downloaded yesterday. but without CS6.5SP1.... thank you very much...
you can upload it to <a href="ftp://67.210.***/" target="_new">ftp://67.210.****/</a> username: **** password:*****

rexleed

--------------------------------------------------------

Hi , rexleead, I'm so sorry i cannot help you. Actually, our company's connection speed is very slowly, so I get software I need from company's IT department.
BTW, I remind you that you'd better not public your account infomation.
jack111111 2009-02-12 17:10
为啥报告msxml3拒绝访问?
rexleed 2009-02-11 00:38
对了,你老人家有email或其它联系方式什么的吗 方便告诉我吗 可以email我 呵呵
rexleed 2009-02-10 20:33
呵呵,今天我的账号好了。。。
谢谢了。
本来想通过ftp传的 :)
天使の泪 2009-02-10 20:26
Composer 还蛮大的,没法给你发啊,伙计。
rexleed 2009-02-09 10:33
Hi,
Happy new year.
I am a chinese documentum software engineer. Sorry to bother you.
In a new project, I need to use DCTM 6.5. I get Content server, DA and Webtop 6.5 now.
But also I need Documentum Composer 6.5, but My account in https://powerlink.emc.com has been limited
this week. Do you have the priviledge on powwerlink? If you do, could you please do me a favor to download
one copy for me? Thanks very much.

My email: rexleed AT gmail.com

Best wishes,
rexleed
xioxu 2009-02-03 11:48
如果配置完application pool的账户后,访问站点报Service Unavailable错误,那么将该账户添加进IIS_WPG and STS_WPG WSS_WPG就可以了。
xioxu 2009-01-24 08:52
"WSE594:InitializeSecurityContext call failed with the following error
message: A specified logon session does not exist. It may already have been
terminated."

这个问题就是application pool账户的原因。(上边所说的)
xioxu 2009-01-23 18:34

如果遇到session不存在,那么应该是应用程序池用户没有配置成domain的用户,修改一下就好了.
具体可以参考这篇文章:
http://msdn.microsoft.com/en-us/library/aa480609.aspx
xioxu 2009-01-06 00:12
SharePoint Portal Server 2003 安装图解
http://stynzf.blogbus.com/logs/10151036.html
共4页: 1 2 3 4 下一页