Tagged Questions

4
votes
3answers
230 views

How to manage that aspx pages load faster?

Hi guys, I have a (big) problem that all of you that work with Webforms might have. The problem is the time to load a page. Using localhost (witch should be the fastest mode) in …
2
votes
3answers
102 views

How do i find out what is slowing down my page load in IE7

http://shanamccormick.com The page loads all the images and then says "(1 item remaining) Waiting on http:// shanamccormick com..." How can i see what it is waiting to load here? …
2
votes
6answers
389 views

What is a reliable way to calculate actual (web) page loadtime

I'm interested in knowing the actual average page loadtime for my webapplication. Simplistically, how log does my average visitor wait before they can start using a page on my sit …
2
votes
3answers
2k views

Know of a good page load progressbar for my ASP.net application?

Just wondering if anyone has seen any usable progress bar for C# .net apps. My app takes about 20-60 secs to load and I would love to show users a progress bar while they wait. I …
1
vote
2answers
391 views

PHP echo vs PHP short tags

Are they equal in safeness? I was informed that using <?=$function_here?> was less safe, and that it slows down page load. So I am now strictly biased to using echo. I ju …
1
vote
4answers
315 views

Page doesn’t fully load in IE7 or IE8 (but works in other browsers)

I've come across a really strange problem where a page I'm trying to test in IE7 and IE8 is taking forever to load. The problem is that it works in all other browsers just fine (ye …
1
vote
2answers
705 views

Problem finding a control within a FormView from code-behind

Here the code behind... I'm trying to retrieve this control so I can add items to the drop down list (I'm retrieving the Role Groups to add to the drop down list in the code-behind …
0
votes
1answer
22 views

while using Tiny mce pages take for ever to load.

I have a few forms that use tiny mce. I have noticed recently that the page takes for ever to load (over 2 minutes), as soon as I comment out the text area that uses tiny mce the p …
0
votes
2answers
49 views

Access CommandEventArgs within PageLoad

Hello all, I am using c#.net I have a repeater within a View (MultiView) each row contains a ‘Edit’ button (stored on the CommandArgument is the type ID). <asp:Button ID="bu …
0
votes
2answers
73 views

Initial text is not populating in textbox

I have put an initial text in the text box of a asp.net web page. In the text property box. I want to load the text in the load time of the webpage. While i debug and run text bo …
0
votes
2answers
192 views

how to call javascript in child page on load event

Hi, I have an asp.net application with an aspx page. In page_Load event of the aspx page,m handling some code which is based on the hidden variable value from the javascript(assig …
0
votes
2answers
138 views

Placeholders Not Instantiated when adding Controls Programmatically

I have a an ASPX Page with a Placeholder control declared. In the Codebehind I create a UserControl I have and add it to the Placeholder. protected void Page_Load(object sender, …
0
votes
0answers
30 views

Graceful Page Loading / Controlling File Loading

Hi folks, I am a scriptmonkey working with a lot of graphic designers who know not a thing about the web. Despite my objections I frequently find myself with problems such as a 1 …
0
votes
1answer
147 views

fill textbox on page load after the usercontrol has been loaded

Hi All, I have added usercontrol to my page datetimepicker, which fill the hours and minutes dropdown. Now the problem is when i try to update the data, i have to fill the dropdow …
0
votes
3answers
3k views

How to display a loading screen while site content loads

Hello! I'm working on a site which contains a whole bunch of mp3s and images, and i'd like to display a loading gif while all the content loads. I have no idea how to achieve this …