A very basic method of creating Cookie in ASP.NET with using HttpCookie. You can read briefly about Cookies at http://msdn.microsoft.com/en-us/library/aa289495(v=vs.71).aspx. I am creating a HTML Page with 3 Buttons to read, write and remove cookie. HTML Page < %@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="read_write_httpcookie_Default" %> < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> [...]

(Continue reading…)

Delete all files method is being used when you store uploaded temporary files in specific folder and want to remove all now. Here I am showing very easy and little method which will definitely help you out. Delete All Files Method – C# public void DeleteAllTempFiles() { foreach (var f in System.IO.Directory.GetFiles(Server.MapPath("~/temp"))) System.IO.File.Delete(f); } Delete [...]

(Continue reading…)

Here is another version of SEO Friendly URL creation, I had posted already when I used to work in ASP Classic. Lets review short and simple method to create SEO Friendly URL in ASP.NET. C# Method/Function public string createSEOTitle(string m_strText) { //m_strURL = m_strURL.Replace("&", "and"); m_strText = Regex.Replace(m_strText, @"[^\w]", "-"); do { m_strText = m_strText.Replace("–", [...]

(Continue reading…)

Hello again! In the 2nd last tutorial I wrote about Upload Multiple Files in PHP with using Uploadify but as per viewers request I am going to tell you how to add uploaded file record into mysql database in PHP with using Uploadify. Beginning with the MySQL Table Structure: CREATE TABLE `uploadify` ( `id` int(10) [...]

(Continue reading…)

When I bought a domain http://webwizo.tel/ I had been trying to verify my domain ownership into Google Webmaster Tools since couple of days. But, suddenly I have found an article about verification process and I intend to share with you guys. Before buy this domain I saw a TV Commercial regarding how .TEL domain can [...]

(Continue reading…)

Uploadify is a jQuery plugin that integrates a fully-customizable multiple file upload utility on your website. It uses a mixture of Javascript, ActionScript, and any server-side language to dynamically create an instance over any DOM element on a page.

(Continue reading…)

This is a small post for using jQuery AJAX method in PHP to check username availability, I am trying to clear your basic skill to use jQuery AJAX which is being very easy to use everywhere at the present time, while I know there is a lot of articles which had already discussed this topic. [...]

(Continue reading…)

Sometimes we have to use IIS and XAMPP at same time in the running operating system. In the technical speaking IIS and Apache run at the same default port “80″. Therefore, we have to change default port either IIS or XAMPP, it depends on you. Jokes a part I never change any Microsoft defaults, nobody [...]

(Continue reading…)

XAMPP virtual hosts setup is quite easy. There are some reasons to use virtual hosts. Although, your XAMPP works fine if you don’t configure virtual hosts. To use custom domain / virtual hosts, you must designate the IP address or (Port, if available). Lets have a look why do we need to create virtual hosts [...]

(Continue reading…)

Lets start with the basic steps of Facebook Application Development. I will show you the complete process to develop a great Facebook app but there are some steps to register application at Facebook. Lets list some steps below to register first: Step #1 – Create Application: login your Facebook account and open this URL to [...]

(Continue reading…)