Click here to Skip to main content
15,888,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Unicode problem in asp.net2.0 Pin
sbua18-Dec-08 0:54
sbua18-Dec-08 0:54 
GeneralRe: Unicode problem in asp.net2.0 Pin
Expert Coming18-Dec-08 0:56
Expert Coming18-Dec-08 0:56 
GeneralRe: Unicode problem in asp.net2.0 Pin
sbua18-Dec-08 1:06
sbua18-Dec-08 1:06 
QuestionGetting error while reading data from text file and replacing with comma Pin
Satish - Developer18-Dec-08 0:11
Satish - Developer18-Dec-08 0:11 
AnswerRe: Getting error while reading data from text file and replacing with comma Pin
Satish - Developer18-Dec-08 0:32
Satish - Developer18-Dec-08 0:32 
AnswerRe: Getting error while reading data from text file and replacing with comma Pin
moon_stick18-Dec-08 0:35
moon_stick18-Dec-08 0:35 
QuestionBookmarks not working in forefox for the pages are invoked inside an iframe Pin
RenuSelvaraaj18-Dec-08 0:10
RenuSelvaraaj18-Dec-08 0:10 
QuestionProblem with hit counter increment. Pin
Atul Kharecha18-Dec-08 0:07
Atul Kharecha18-Dec-08 0:07 
I have label on homepage showing number of hits. I have used Session to keep track of it using database. When new session starts, its increment and on home page its getting reset.
The problem is it works fine when I open site in new window, but when opened in multiple tabs of IE7, it shows same users and not incrementing. Here is the code.

//Assigned 1 from global.asax on starting of each new session.
lock (this)
{
HomeDataInterface oHits = new HomeDataInterface();
if (Session["Hits"].ToString() == "1")
{
oHits.QACoEHits();
Session["Hits"] = "0";
}
lblHits.Text = lblHits.Text + oHits.GetQACoEHits();
}

I added lock(this) but that is also not working.

Can anyone help please?
AnswerRe: Problem with hit counter increment. Pin
Abhijit Jana18-Dec-08 2:16
professionalAbhijit Jana18-Dec-08 2:16 
QuestionCustom Web Setup Deployment Project Pin
shavil17-Dec-08 23:16
shavil17-Dec-08 23:16 
QuestionDebugging ASP.Net application Pin
George_George17-Dec-08 23:02
George_George17-Dec-08 23:02 
AnswerRe: Debugging ASP.Net application Pin
Expert Coming17-Dec-08 23:04
Expert Coming17-Dec-08 23:04 
GeneralRe: Debugging ASP.Net application Pin
George_George18-Dec-08 0:06
George_George18-Dec-08 0:06 
GeneralRe: Debugging ASP.Net application Pin
Expert Coming18-Dec-08 0:54
Expert Coming18-Dec-08 0:54 
GeneralRe: Debugging ASP.Net application Pin
George_George18-Dec-08 1:23
George_George18-Dec-08 1:23 
GeneralRe: Debugging ASP.Net application Pin
Abhijit Jana18-Dec-08 1:59
professionalAbhijit Jana18-Dec-08 1:59 
GeneralRe: Debugging ASP.Net application Pin
George_George19-Dec-08 22:54
George_George19-Dec-08 22:54 
AnswerRe: Debugging ASP.Net application Pin
Abhijit Jana17-Dec-08 23:57
professionalAbhijit Jana17-Dec-08 23:57 
GeneralRe: Debugging ASP.Net application Pin
George_George18-Dec-08 0:10
George_George18-Dec-08 0:10 
GeneralRe: Debugging ASP.Net application Pin
Abhijit Jana18-Dec-08 0:55
professionalAbhijit Jana18-Dec-08 0:55 
GeneralRe: Debugging ASP.Net application Pin
George_George18-Dec-08 1:22
George_George18-Dec-08 1:22 
GeneralRe: Debugging ASP.Net application Pin
Abhijit Jana18-Dec-08 1:44
professionalAbhijit Jana18-Dec-08 1:44 
GeneralRe: Debugging ASP.Net application Pin
George_George18-Dec-08 1:47
George_George18-Dec-08 1:47 
GeneralRe: Debugging ASP.Net application Pin
Abhijit Jana18-Dec-08 1:56
professionalAbhijit Jana18-Dec-08 1:56 
GeneralRe: Debugging ASP.Net application Pin
George_George19-Dec-08 22:51
George_George19-Dec-08 22:51 

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.