摘要: 1. How to control <a pref="www.google.co.jp" target="_blank"> in backend asp.net source (1) <a pref=<%= Parameter %> target="_blank"> in aspx.cs file, 阅读全文
posted @ 2020-07-29 21:29 tomclock 阅读(89) 评论(0) 推荐(0) 编辑
摘要: The Literal control is used to display text; that is, it renders static text on a Web page without adding additional HTML tags. It passes content dire 阅读全文
posted @ 2020-07-31 22:19 tomclock 阅读(100) 评论(0) 推荐(0) 编辑
摘要: A wield problem happend today, Local debug environment, IE browser , Session lost in Page Trasation. Don't know there reason. Windows7 Evironment. Las 阅读全文
posted @ 2020-07-21 20:39 tomclock 阅读(103) 评论(0) 推荐(0) 编辑
摘要: Service.sln Example: wsdl /out:Service.cs /n:Knt.Net.Mngr.MngrAction.WS.Original.Mngr http://localhost:2913/Mngr/MngrService.asmx?wsdl 阅读全文
posted @ 2020-07-08 14:59 tomclock 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Since I have spent many years on Windows Application development in my first three years of software career. I was interested in the C#, had tried to 阅读全文
posted @ 2018-03-03 18:33 tomclock 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 一つの銀行内部システムがUpdateして、そもそもXPシステムの場合、順調で来たのに。 Windows7の場合、 FolderBrowserDialogがうまく動作してなかった。 調べて結果が、仕方ない。Windows Systemの既存Bugです。 色々調査を書けて、結論として二つの対応方針があり 阅读全文
posted @ 2017-12-14 23:30 tomclock 阅读(220) 评论(0) 推荐(0) 编辑
摘要: As UFT-8, and shift_jis shows different text format in text process. UFT-8 can treat the basic kanji and almost every kind of English alphabet charact 阅读全文
posted @ 2017-10-30 14:13 tomclock 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 近期因SSL 认证书过期,需要更新。之前所用的工作是交给笑脸工作时代替完成,并没有足够的知识很经验应对。 网上查过几个相关帖子,花了近一个工作日完成认证书的工作。 0,打开cmd窗口,输入 certmgr.msc打开证明书管理窗口,在信用机关栏,确认本次依赖对象。 1, 打开IIS管理器,选中左侧, 阅读全文
posted @ 2017-10-25 19:41 tomclock 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 我们需要起个头学习PowerShell Set-Location 'C:\Users\jwang\Desktop\PDFTEST\PDFsGet' $lines=Get-Content -Encoding UTF8 FILE_COPY3.LOG $strArray=@("TemplateName") 阅读全文
posted @ 2017-10-18 15:51 tomclock 阅读(188) 评论(1) 推荐(0) 编辑
摘要: chcp 932 @echo off echo ############################################################## echo SRC must be copyed into "PROJECTA" .Has it already been co 阅读全文
posted @ 2017-10-17 15:51 tomclock 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 在Windows7系统下,.VS2008 VB的开发环境下,数据库采用Oracle11g数据库。 进行代码调试等工作,必须安装Oracle的开发环境工具,这个不难理解。 近日客户服务器,进行更新说是出现异常。而客户端的测试,并没有出现任何异常。 为了彻底解决该问题,需再现客户的异常。 于是:安装Wi 阅读全文
posted @ 2017-10-17 14:29 tomclock 阅读(1019) 评论(0) 推荐(0) 编辑
摘要: JavaScript动态清除。 两日前在修改ASP.NET中涉及到修改既有的一个调用Ajax 命名的方法,然后发布出去。 昨日,客户反馈画面显示不正常。 一脸愣逼,第一反应是IE的配置,客户的实际PC环境情况也不清晰。只能胡乱猜想。 大体往两个方向做猜想:1,IE的配置变动;2,代码的漏洞。 沿着这 阅读全文
posted @ 2017-10-12 09:27 tomclock 阅读(251) 评论(0) 推荐(0) 编辑
摘要: IIS 8.5 发布 Web 报错。 因为使用的是NEC提供的云上服务器WindowsServer2012R2,其环境没有仔细分析和调查。直接将一个已经编译好的代码包植入www目录下。启动IIS,失败。 1,第一次错误: HTTP ERROR 500.19 - InternalServerError 阅读全文
posted @ 2017-10-11 16:19 tomclock 阅读(828) 评论(0) 推荐(0) 编辑
摘要: If a control is disabled it cannot be edited and its content is excluded when the form is submitted.If a control is readonly it cannot be edited, but 阅读全文
posted @ 2017-10-06 08:12 tomclock 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: DECLARE @SINKKNO varchar(11), @KYOKAYMD varchar(8), @LASTUPDATEID varchar(5), @LASTUPDPGID varchar(7), @SYANAISEQNO varchar(8), @TUKAN_TOKUISAKI varch 阅读全文
posted @ 2017-10-04 17:25 tomclock 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 最近,突然接触到AJAX的项目工程,对项目中画面数据更新方式有所接触。其中最突出的,就是画面Tab引发数据从后台读取并显示,而无需对整个页面进行刷新。微软自有控件ScriptManager,及Updatepanel,其使用方法进行分析,值得玩味。 在进一步分析说明之前,顺便提一下基础知识如下: ht 阅读全文
posted @ 2017-10-03 11:48 tomclock 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 在ASP.NET开发环境中, 新建Asp.net项目。新生成的Aspx文件中,会自动生成如下代码。 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CodeBehind.aspx.cs" Inherits="WebApplicati 阅读全文
posted @ 2017-09-27 15:14 tomclock 阅读(1275) 评论(0) 推荐(0) 编辑
摘要: 在拜读Joseph albahari的Threading in C#文章中,从线程问题的提出,到解决方案的实现。及后续利用Microsoft提供的现成DLL提供的现有方法来处理, 多线程之间相互关联及处理方法。感慨千万。 而后,进入其广告链接LinqPad工具后,下载安装,读到关于循环查询的语句时, 阅读全文
posted @ 2017-09-13 14:50 tomclock 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 最近,在编辑.NET3.5版本代码是,突然爆出错误。 查处是跟参照有关。 在过去的.vbproj文件中,有如下参照 <Reference Include="System.Windows.Forms.DataVisualization, Version=3.5.0.0, Culture=neutral 阅读全文
posted @ 2017-09-07 10:55 tomclock 阅读(267) 评论(0) 推荐(0) 编辑
摘要: Some times, we like to talk about multi thread. But here today, I`d like to show a sample to explain the relationship of different process. To simplif 阅读全文
posted @ 2017-09-05 15:32 tomclock 阅读(145) 评论(0) 推荐(0) 编辑