How to Create Zip File in Dot.NET Application

ZIP files(files with .zip extension) are well known file format used for file compression. After compression, file size  can be significantly reduced and multiple files and folder can be archive into a single zip file.  All zip files can be password protected to reduce risk of unauthorized access. Almost every…continue reading →
How to Install Microsoft IIS (Internet Information Server) on Windows7

How to Install Microsoft IIS (Internet Information Server) on Windows7

Microsoft IIS is the Web Server used to develop and deploy web application based on Microsoft Technologies like ASP.net and Classic ASP. If you are developer working on Microsoft Technologies you might need to install Microsoft IIS at some point. Please note all Windows 7 version not included Microsoft Soft…continue reading →

Set / Retrieve Script Timeout in ASP

The ScriptTimeout property in ASP specifies the amount of run-time in seconds for a script before it terminates. The default value is 90 seconds set by IIS. Set the script timeout: <% Server.ScriptTimeout=200 %> Retrieve the current value of the ScriptTimeout property: <% response.write(Server.ScriptTimeout) %>continue reading →
Snap Shots Engage New Update

Snap Shots Engage New Update

Snap Shots now leverage with cool new technology to serve unique custom snap shot for blog post. The new technology called Snap Shots Engage. SnapShot uses Artificial Intelligence and linguistic analysis technology to drive custom snap on the basis of key phrases in blog post. By default, this same technology…continue reading →

Connect to your PC over internet with SynXro

SynXro is another web based product to connect, a PC to PC; or PC to LAN connection. SynXro allows you to access all the drives of your PC and all the network drives of all PCs connected to your Local Area Network from anywhere in the world. You only need…continue reading →

Visual Basic Data Types

There are 11 data types in Visual Basic 6. These are Boolean, Byte, Currency, Date, Double, Integer, Long, Object, Single, String, and Variant. Each of these data types have their own purpose. I am describing here all data type: Boolean The Boolean data type has only two states, True and…continue reading →

How to run FFMPEG command in Asp.Net

To run ffmpeg commands in asp.net you need to use Media Handler class. Here is an example how to use media handler class to run ffmpeg commands. //Create media handler object of Media_handler class Media_handler mymediahandler=new Media_handler(); // Get web site application path string webapppath =Server.MapPath(Request.ApplicationPath); //Get ffmpeg.exe full path…continue reading →