Showing posts with label SOFTWARE TIPS. Show all posts
Showing posts with label SOFTWARE TIPS. Show all posts

Wednesday, September 18, 2013

Unlocked or Enable the Protected Disk

Unlocked or Enable the Protected Disk

Put this in a .bat file and execute it:
cd\

C:\ reg add "HKLM\System\CurrentControlSet\Control\StorageDevicePolicies" /t Reg_dword /v WriteProtect /f /d 0

Friday, January 6, 2012

How to Write a Script in ASP?

ASP or Active Server Pages is a scripting language created by Microsoft back in 1996 as part of Internet Information Server (IIS) 2.0. With ASP, you can create web pages that are dynamic in nature and that allow the users to interact with the website. ASP is processed at the server level, and the results are then returned to the web browser. ASP can be as simple as writing, "Hello World! I'm learning how to write script in ASP," on a web page or as complex as submitting and retrieving data from a database like Microsoft Access or Microsoft SQL. Make sure your website hosting plan is Windows based and supports ASP

Instructions 1.
Use either a text editor or a WYSIWYG editor to write your ASP code. You should have a functional understanding of HTML coding before attempting ASP scripting. As an example, Microsoft FrontPage is used to write code in this article, but Notepad works just as well. Make sure to save your files with the .asp extension and not .htm or .html; otherwise, the server will not process the ASP code and most likely will return an error message in the browser.

2.
ASP coding using Notepad
Write your code between the delimiters (the percent sign with brackets) <% %> so the server knows to process the code correctly and return the results to the browser.

//