Web Forms :: Time Out Exoired For Website?
May 26, 2010
iam geting Time out expired for my website .This is happending when more users accessing the site . so how can i resolve this issue .rectify this issue. But it is not problem with connection pooling
View 2 Replies
Similar Messages:
Apr 6, 2010
I have a client request that all times be displayed in Pacific Time Zone, regardless of client settings. I'd like to avoid a scenario where I have to call a function for every time display and instead have a single point where I can make the switch.
I'm thinking a custom culture might do the trick, but I wanted to ask before I set off down a potentially blind alley (or miss something trivially easy).
View 3 Replies
May 7, 2010
I know google analytics can do it,but i need to store each user data on my own database - for various advanced reasons and want to manipulate it. Here are my series of questions
1)How do i calculate time (when the visitor visits the website the timer should start....and when the visitor closes the page on my ASP.NEt Website timer should stop...so collecting his timespan to visit the website(when the visitor closes the page how should i make timer stop....and make an entry of his visit into the database....tricky...but i know there is a way out but how???).
2) I neede to know from which country the user came from...I know to collect the IP address but how could we find out which country the user came from..???
3)the next thing i need to know is..I want to display reports on my ASP.NEt Website of all visitor information,country,date time he visited and which technology i can use...crystal reports will be fine for me...or should any other.
4) i need to make it look like google analytics and make it super fast ...so my website visitors shouldnt wait too long..
View 4 Replies
Dec 27, 2012
I want increasing my website pages loading speedĀ
I know one of thing is compress css file is there other thing that I do to increasing webpage loading speed?
View 1 Replies
Oct 4, 2010
i m preparing a website based on asp.net forums .i have made all the forms reg., login , etchow to get the main grid which is on forums page.how to keep that updating every time.
View 2 Replies
Aug 9, 2011
I have a web site published to a Windows 2008 R2 server running IIS 7.5. The web site accesses a SQL 2008 database on a different server. The web site is accessed from an intranet.
In global.aspx users are logged in by retrieving their Windows.Identity which is passed to a stored procedure that checks they have rights to access the system. All the people trying to access the system have rights to the system and if I run the stored procedure with their various Windows.Identities passed as the parameter - it returns that they are authorized.
I have admin rights on the web server. If I browse the site from my box it works okay. If another user who has admin rights on the server browses the site (at the same time as me - or on their own) it works okay.
If someone without admin rights to the server browses the site - and they are the only person 'on' the site - it works okay. If a second person tries to browse the site at the same time as the first person is logged in ... nothing happens. The progress bar in the browser just sits there forever. No errors etc.
So, no-one using the site ... Fred types http://server1/system1/ into his browser and the site works okay.
Jim types http://server1/system1/ into his browser and nothing happens.
Fred logs off and Jim tries the site again. Works fine for Jim this time.
View 5 Replies
Apr 16, 2012
I am wondering how I could implement a timeout feature in my website when after a period of non-inveracity from the user for example 20 minutes then this will redirect back to a timed out page? I'm using VB 2010
View 1 Replies
Jun 3, 2010
I'm looking for a way to put real time features into my web site. The idea is asynchronous communication between 2 people - like a chat session. If I use the chat example - I'd like the second person to know that the first one has sent a message to him, without refreshing or doing something active on the web page. Polling is not a good idea here - so is there any other solution? the back-end could be ASP.NET or PHP (ASP.NET preferred).
View 3 Replies
Aug 16, 2010
I got this answer from Kjensen and read the answers, but this is a different webapp
I'm running scheduled events that process incoming orders, set Picking material, manage Track & Trace numbers, etc ... and I do this at a specific time of the day (set in Administration Panel)
My server is in UK (DiscountAsp.net) but I'm 2 hours ahead.
What I really wanted is, every time I call DateTime.Now that would be automatically changed to my time instead of Local Server Time. This should handle Daylight savings as well.
I thought about making a Extension to simply call DateTime.MyLocalTime and there use TimeInfo to add / subtract the correct hours.
In good old days I did this in Global.asa (ASP) ... I just wanted to know if there is a better way to handle this.
View 1 Replies
Mar 14, 2010
how to calculate the time the visitor has been on the website?
View 3 Replies
Jan 22, 2010
I have noticed two time-related problems with my website:
[1] Slowness of loading the graphics for each page in the browser;
[2] Receiving a "Runtime Error" page in the browser when I do take action on the site (e.g. navigate to another page) within approx. 30 seconds.
Are these problems related to limitations of my web host?
View 3 Replies
Feb 28, 2010
This is my approach : I reserve last time that a user post a postback to server in a session and in every postback subtract this value from current value. Is there a better way for this?
View 1 Replies
Apr 20, 2010
The home page of my website and some other page also are taking some time to load, instead of making them load fast, I want some please wait screen or progress bar and mean while the required page would be loaded behind.
View 3 Replies
Aug 22, 2010
Is there a way to trigger a piece of code to execute at a certain time once a week?
I basically want my website to send out a reminder email every sunday. I have a function called SendReminder() and I would like to know if it is posible for it to run by itself because at the minute I have to press a button to run it.
View 2 Replies
Jan 5, 2011
I read somewhere the website quits running after sometime if no one pings it. I wanted to know is there any way on IIS 6 that will keep the website up all the time(alive) even if no one accesses it
View 2 Replies
Feb 20, 2010
I'm wondering building a website like StackOverFlow (approximately the same features using ASP.NET ) How much Work-power and time does it take in your opinion . My boss has asked me to estimate for work-power , time , cost and suitable technologies .
View 6 Replies
Sep 30, 2010
I work in a multi server , multi webfarm environment (without sessions). We need to be able to identfy if a customer has arrived here for the first or has been before (even though they have not logged in)Not only will we change the text of our salutations depeding on this state but we will also use it in other busness logic. I can check for the existance of a cookie when they fire the Session_onStart event but I would have to write a cookie out to show they had previously visited for the next time the customer came to call.
If I wrote the cookie out in the Session_onStart then somehow I would have to tell the website that this was a first time visit. Also as this is a stateless webfarm - the next server may be different from the previous one which would fire a new Session_onStart event in its own right - which would see the cookie and assume it was not my first visit, even though it was my first visit on a different web page of the web site.
I dont want to write it out and say if its within X minutes of the cookie creation time you are still in your first visit as that x minutes wouldnt work 100% of the time If I dont write the cookie out on Session_onStart then when could I write it out?
View 6 Replies
May 4, 2010
I have created a asp.net website, that we are going to deploy at India. All client of this website would be from SWEDEN.
This site have option (last login date time) at user's dashboard after successfull login.
Now my problem is that if application is deploy at India and user loggedin from SWEDEN then user is able to show only server date time which is of India.
My Steps are as following
1. User logged into site first time at 10 AM(server time), surfing starts...
2. Logged out at 10:30 (server time)
3. Application store server datetime in database.
4. Next time user come, application will store same date and time from database as last loggin datetime.
How can i store SWEDEN date time in database when user logged out from site, it will in future grow to other country also.
View 2 Replies
Apr 4, 2011
In development, our Asp.Net 4 website takes a fairly lengthy time to start after the project libraries are built
We do a fair amount of population of statics etc, but not enough to justify the length of time it takes the app to come up (probably 3-4 minutes)
We aren't building the website, just the libraries, and batch != true in the compilation element in the .config file.
I will try log some diagnostics, but any other pointers would be useful
View 2 Replies
Nov 3, 2010
I am tring to make Panel1 visible first, then in five seconds, Panel2 is visible, then in another five seconds, Panel3 is visible.
Here is my basic code for this.
[code]...
View 1 Replies
Jul 11, 2010
How can I change the default session time in an ASP.NET website to something user defined - perhaps 1 hr?I assume the default session time is 20 mins..
View 3 Replies
Aug 3, 2010
I've done a bit of searching on this subject and haven't found anything so far. I am successfully using the Profile object and am saving Profile records away into my SQL Server Database. I have checked using the stored procedures and viewed the individual records to know they are there. However, I want to create a WebForm that can enumerate through all of the users in my Membership DB (Same DB as the Profile DB) and list each user in a grid showing what values each user has within their profile. For example:
Username
Profile Element 1
Profile Element 2
Profile Element 3
bob
true
false
true
fred
true
false
true
I want however to replace the 'Profile Element 1' etc etc to display the actual name of the Profile. I would like to do this programmatically so I don't have to recompile the website everytime I add a new Profile element.
View 2 Replies
Jan 8, 2010
I have one website in which there is one page along with one ascx as registered into it. In the ascx where user can add some order details and click on "Make Payment" button, then there are following 2 cases...Case I: If user was not logged in, then a modal popup will open which has login ascx with 2 buttons Register & Login. In this case user either Login or Register and continue with "Make Payment".
View 5 Replies
Jan 28, 2010
I've got this problem.I launched an ASP.NET website with the Umbraco CMS on an ISP.(Its just a very basic informative site. nothing special.)When I go want to visit the website however, the first pageload takes a lot of time, sometimes even up to 20 seconds. Of course this is ridiculous. Afterwards, I am able to navigate the site relatively quick.. So every first pageload is slow, then everything is OK, more or less.Does anybody have any idea what the problem could be? Would it be IIS? ASP.NET?
View 5 Replies
Jul 6, 2010
how to suppress the "AM" in the gridview (template Bind("RideTimeMin", "{0:t}")? Don't tell me to use military time because the function is not "time on a clock"; it's how much time is allowed for a task (in this case the min/max hours & minutes that horses have to complete a 20 mile trail; e.g. 05:00, 05:27, etc). I'm currently accomplishing this in the "ondatabound" function by "..RTmin.Replace("AM","")". I have looked and looked at all the websites that talk about datetime formatting but have yet to find a way to do it upfront in the gridview bind statement.
View 6 Replies