`
thecloud
  • 浏览: 885941 次
文章分类
社区版块
存档分类
最新评论
文章列表
大家可能会发现,使用了 Response.Redirect(“aaa.aspx“);之前的alert或者是confirm框就失效了,原因是alert是调用客户端的事件,Response.Redirect在客户端也要进行交互,后者将前者屏蔽掉了。而使用了Server.Transfer(“aaa.axpx“)就能解决这一问题,因为它无需与客户端相交互,不会产生冲突。
访问某些网站的时候,如果出现"Automation 服务器不能创建对象"的错误提示框,表明网页内的对象需要scrrun.dll的支持,可以尝试下面的方法:开始--运行--regsvr32 scrrun.dll不用重新安装操作系统和vs.net 有些脚本需要微软的 MSXML 控件才能进入。当使用 IE 5 以上版本的缺省安全模式时,会提示是否接受 MSXML 控件,如果接受,MSXML 将自动安装到您的机器上(得等上几分钟)。如果自动安装不成功,可以自行下载和安装 MSXML 3.0。 如果安装 MSXML 3 后仍然出现 'Automation 服务器不能 ...
http://www.microsoft.com/china/msdn/developercenter/smartclient/default.mspx摘要 本文主要讨论基于企业环境的客户端应用程序模型,由于本人曾经从事过传统的客户端/服务器两层结构应用程序和基于.net平台的多层结构应用程序的开发,因此 ...
3、 Smart Client的特点 (1) 动态加载,即需即装 应用程序的各个构件之间的相互调用并不采用直接引用的方式,而是采用动态加载,即需即装的方式,有效地降低了对系统资源的消耗。应用软件开发商可根据企业应用系统的公 ...
Billy HollisElysian Consulting March 24, 2004 Summary: While Web applications have received the bulk of the interest over the last few years, improvements in the client mean that it's time to re-investigate client-side development. In this new column, .NET in the Real World, authored by Microsoft R ...
http://chs.gotdotnet.com/quickstart/winforms/doc/WinFormsIeSourcing.aspx
Built to take advantage of new XML technologies, Smart Client software delivers the best of both worlds, combining the reach of the Internet with the power of local computing hardware. Discover the 10 best reasons for developers to start building Smart Client applications: Improved Reliabilit ...
Chris Sells <!---InfoBar--->This article assumes you're familiar with C#, Windows Forms, and .NET Level of Difficulty 1 2 3 SUMMARY Windows Forms applications solve many of the problems inherent in building Web applications the old fashioned way—with HTML. To demonstrate the use of Windows ...
Introduction Do you need to deploy updates to .NET applications across multiple desktops? Would you like to develop "self-updating" applications? If so, the Updater Application Block for .NET is for you. The Updater Application Block is a .NET component that you can use to detect, valida ...
Introduction For the past five years, software developers targeting the corporate environment have faced a difficult tradeoff when deciding between the browser-based, thin client application model and its rich client counterpart. The browser-based application is easy to install and maintain, can ta ...
BITS Write Auto-Updating Apps with .NET and the Background Intelligent Transfer Service API Jason Clark This article assumes you're familiar with C# and Visual Basic .NET Level of Difficulty123 Download the code for this article: BITS.exe (363KB) SUMMARY Both the .NET Framework and Windows ...
智能客户端应用模型1.定义:一个可扩展的能集成不同应用的桌面应用程序,并具有以下特征: ¨ 无接触部署:安装时只要将一个主程序文件下载到本地,直接运行即可,无须改变注册表或共享的系统组件,其他应用组件将在第一次运行时自动下载。 ¨ 自动更新:只需将新版本的程序发布在服务器上,由客户端自动发现最新版本的程序和应用组件,并自动下载和更新。 ¨ 离线运用:允许脱离服务器时,利用本地的客户端程序和应用组件进行工作。 ¨ 动态加载应用组件:应用软件开发商可根据企业应用系统的公共接口进行开发,然后将应用组件发布在企业的服务器上,客户端应用程序将自动发现并加载该应用组件。 ¨ 个性化用户界面:用户 ...
假设在对话框上有一个文本框IDC_EDIT_COLORINDEX,然后当在文本框输入完毕按回车,对话框并不退出,而是直接执行某种功能。例中的是OnButtonLogin()。如果光是为了这个行为的话,个人觉得根本不必要用一个类来处理这东西。有点杀鸡用牛刀了。 BOOL CMhColorDialog::PreTranslateMessage(MSG* pMsg) { if(pMsg->message == WM_KEYDOWN) { if(pMsg->wParam == VK_RETURN) { UINT nID = GetFocus()->GetDlgCtrlID() ...
怎样配置SQL Server发送电子邮件 朱二(2004.9 转载请注明作者)   通常大家都知道:SQL Server与Microsoft Exchange Server集成性很好,关于这方面的配置,在SQL Server的联机帮助里有详细的说明,在此不再赘述。然而我们更关心的问题是: ...
public class SendMail{public SendMail(){}//发送普通文本Email方法入口//From:发信人邮件地址 To:收信人邮件地址 // FromName:发信人名称 ToName:收信人名称//Subject:信件主题//Body:邮件正文public int Send(string strTitle,string strTo,string strContent){try{ CDO.Message oMsg = new CDO.Message();oMsg.From = "Administrator@innosis.com.cn";oMs ...
Global site tag (gtag.js) - Google Analytics