Skip to main content

Posts

Showing posts from December, 2008

Secure messaging

Process Secure Messaging The sender writes an eMail online and sends it over a secure SSL-connection to the secure messaging server. The recipient is notified through a normal eMail that a secure message is waiting for delivery on the secure server. The recipient is invited to download the message through a link. The sender provides the recipient with a message unlock code . The code is required in order to access the pending message. If the recipient has already been in contact with the sender through secure messaging server and has registered, this step is not required. The secure message and confidential documents such as contracts, business plans, resumes or loan documents can then be accessed with the message unlock code and downloaded. MUC (Message Unlock Code) A MUC is a message password and protects a message sent to a new communication partner from being seen by erroneous recipients and is used to initiate trust. If a message is sent to a new recipient, the system generates...

Disable Allow This Webpage to Access Your Clipboard

Disable Allow This Webpage to Access Your Clipboard Pop-Up Warning Message in IE7 This security feature can be disabled. To disable the pop up warning message about possible harmful or unauthorized Clipboard access, follow the steps below: Go to Tools -> Internet Options. Go to Security tab. Select “Internet” zone, then click on “Custom level…” button. Scroll down to “Scripting” section (at the bottom few). Under “Allow Programmatic clipboard access” option, check or select (tick) Enable. Default action for this option is Prompt, which cause the pop-up message whenever there is any attempt to access the Clipboard. Click Ok twice to exit from Internet Options.

Read Excel Date in C#

Microsoft Excel stores dates as sequential numbers known as serial values. DateTime.FromOADate Method Returns a DateTime equivalent to the specified OLE Automation Date. public static DateTime FromOADate( double d ) double _d = double.Parse(values.GetValue(1, i).ToString()); DateTime.FromOADate(_d).ToShortDateString();

URL Rewriting in ASP.NET

With classic ASP, the only way to utilize URL rewriting was to write an ISAPI filter or to buy a third-party product that offered URL rewriting capabilities. With Microsoft® ASP.NET, however, you can easily create your own URL rewriting software in a number of ways. What Happens When a Request Reaches IIS if a request comes in for a Web page named Info.asp, IIS will route the message to the asp.dll ISAPI extension. This ISAPI extension will then load the requested ASP page, execute it, and return its rendered HTML to IIS, which will then send it back to the requesting client. For ASP.NET pages, IIS routes the message to the aspnet_isapi.dll ISAPI extension. The aspnet_isapi.dll ISAPI extension then hands off processing to the managed ASP.NET worker process, which processes the request, returning the ASP.NET Web page's rendered HTML. “You can customize IIS to specify what extensions are mapped to what ISAPI extensions. the ASP.NET-related extensions—.aspx, .ascx, .config, .asmx, ....