Posted on: 4/3/2014 7:26:21 AM | Views : 228

Suppose Table name is "profiles" in database with columns...
Name        Datatype
profileid     int
Hitcount     int
ASPX page Design
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Demo.aspx.cs" Inherits="Demo" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <table> <tr> <td> <b>No of Users Online:</b> </td> <td style="color: Red"> <asp:Label ID ="lblCounter" runat ...

Go to the complete details ...