Click here to Skip to main content
15,920,956 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: pop is not opening in a server Pin
eyeseetee14-Apr-08 21:49
eyeseetee14-Apr-08 21:49 
GeneralRe: pop is not opening in a server Pin
Nouman Bhatti15-Apr-08 0:03
Nouman Bhatti15-Apr-08 0:03 
GeneralRe: pop is not opening in a server Pin
Ashish Sehajpal15-Apr-08 1:04
Ashish Sehajpal15-Apr-08 1:04 
QuestionHow to take selected value of dropdownlist in web method using cascading dropdownlist Pin
mohd imran abdul aziz14-Apr-08 20:24
mohd imran abdul aziz14-Apr-08 20:24 
QuestionLinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 19:22
Soumini Ramakrishnan14-Apr-08 19:22 
GeneralRe: LinkButton problem Pin
Christian Graus14-Apr-08 19:36
protectorChristian Graus14-Apr-08 19:36 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 20:01
Soumini Ramakrishnan14-Apr-08 20:01 
GeneralRe: LinkButton problem Pin
N a v a n e e t h14-Apr-08 20:22
N a v a n e e t h14-Apr-08 20:22 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 20:31
Soumini Ramakrishnan14-Apr-08 20:31 
GeneralRe: LinkButton problem Pin
Nouman Bhatti14-Apr-08 21:29
Nouman Bhatti14-Apr-08 21:29 
GeneralRe: LinkButton problem Pin
eyeseetee14-Apr-08 21:38
eyeseetee14-Apr-08 21:38 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 23:33
Soumini Ramakrishnan14-Apr-08 23:33 
Questioni want to know the number hits customers are visting Pin
ajaych14-Apr-08 19:02
ajaych14-Apr-08 19:02 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:17
protectorChristian Graus14-Apr-08 19:17 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 19:31
Soumini Ramakrishnan14-Apr-08 19:31 
I think the following code will help you. In your application folder create a text file named "Counter.txt" and put 0 in that file. Write the following in the code behind page.
protected void Page_Load(object sender, EventArgs e)
{
myLabel .Text = counter();
}
public string counter()
{

StreamReader re = File.OpenText(Server.MapPath("Counter.txt"));
string input = null;
string mycounter = "";

while ((input = re.ReadLine()) != null)
{
mycounter = mycounter + input;
}

re.Close();

int myInt = int.Parse(mycounter);
myInt = myInt + 1;

TextWriter tw = new StreamWriter(Server.MapPath("Counter.txt"));

tw.WriteLine(Convert.ToString(myInt));

tw.Close();

re = File.OpenText(Server.MapPath("Counter.txt"));
input = null;
mycounter = "";

while ((input = re.ReadLine()) != null) { mycounter = mycounter + input; } re.Close();

return mycounter;

}
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:36
protectorChristian Graus14-Apr-08 19:36 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 19:49
Soumini Ramakrishnan14-Apr-08 19:49 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:53
protectorChristian Graus14-Apr-08 19:53 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 20:03
Soumini Ramakrishnan14-Apr-08 20:03 
GeneralRe: i want to know the number hits customers are visting Pin
N a v a n e e t h14-Apr-08 20:15
N a v a n e e t h14-Apr-08 20:15 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 21:12
protectorChristian Graus14-Apr-08 21:12 
GeneralRe: i want to know the number hits customers are visting Pin
N a v a n e e t h14-Apr-08 21:23
N a v a n e e t h14-Apr-08 21:23 
GeneralRe: i want to know the number hits customers are visting Pin
ajaych15-Apr-08 19:50
ajaych15-Apr-08 19:50 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus16-Apr-08 11:18
protectorChristian Graus16-Apr-08 11:18 
GeneralRe: i want to know the number hits customers are visting Pin
N a v a n e e t h14-Apr-08 20:19
N a v a n e e t h14-Apr-08 20:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.