Tagged Questions
The page-load tag has no wiki summary.
19
votes
11answers
36k views
Javascript that executes after page load
I'm executing an external script, using a <script> inside <head>.
Now since the script executes before the page has loaded, I can't access the <body>, among other things. I'd like ...
11
votes
7answers
619 views
Gmail like URL scheme
I am working on a ticket system, having the following requirement:
The home page is divided into two sections:
Sec-1. Some filter options are shown here.(like closed-tickets, open-tickets, ...
11
votes
3answers
934 views
Speeding Up the First Page Load in django
When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect.
Unfortunately the first page served by each apache instance is quite slow while it ...
10
votes
3answers
2k views
Resharper suggestion Page_Load = PageLoad
Usually when the page_load event handler is added to a codebehind file by Visual Studio (e.g. double clicking the page in designer mode), it ends up looking like this:
/// <summary>
/// Handles ...
7
votes
3answers
541 views
Is the “async” attribute/property useful if a script is dynamically added to the DOM?
This question is sort of a tangent to Browser support for <script async=“true” />?.
I've seen a few scripts lately that do something like this:
var s = document.createElement('script');
s.type ...
6
votes
4answers
1k views
LoadControl and Page_Load event not firing
Hey all! I'm loading a UserControl through a Web Method, and using the LoadControl functionality as such:
// create page, stringWriter
Page _page = new Page();
StringWriter _writer = new ...
5
votes
2answers
4k views
page load() or page init()
In asp.net, when do you bind your gridviews? at Page Load() or Page Init()....why?
5
votes
3answers
2k views
ASP.NET : Check for click event in page_load
In c#, how can I check to see if a link button has been clicked in the page load method?
I need to know if it was clicked before the click event is fired?
4
votes
4answers
1k views
What is the best way to make a side-scrolling website load quickly?
I'm new to stack-overflow and programming so forgive me for any awkward phrasing!
I am building a side-scrolling website which is graphic-rich, and 680x9400px in size. I will be using some javascript ...
3
votes
3answers
162 views
Slide down a div on body load
How can I have a div hide as the page is loading and then slide down once the page loads? I don't want to use CSS display:none;
3
votes
1answer
45 views
how to react on submit in Page_Load?
i have many radio buttons:
<asp:RadioButtonList ID="selectedYesNoQuestionBlock1" runat="server" RepeatDirection="Horizontal"
OnSelectedIndexChanged="Question1GotAnswered" ...
3
votes
5answers
5k views
Set focus to textbox in ASP.NET Login control on page load
I am trying to set the focus to the user name TextBox which is inside an ASP.NET Login control.
I have tried to do this a couple of ways but none seem to be working. The page is loading but not ...
3
votes
3answers
4k views
How to jQuery slidedown once page has already been loaded
I am having a timing issue when attempting to slide down my more info div. My desired functionality is that the div slidesdown from the top once the page has already been rendered. My problem is if ...
3
votes
1answer
2k views
ASP.NET user control: Page_Load fires before property is set
This is driving me crazy.
I have a very simple user control:
public int? ImageId {set; get;}
protected void Page_Load(object sender, EventArgs e)
{
... do something with ImageId...
}
And ...
3
votes
5answers
616 views
Why does Visual Studio give you Page_Load for WebForms as a default?
When creating a new WebForm, Visual Studios creates a Page_Load handler in the code behind as a default, which is cool. So for years, I have always put code for doing things like set properties of ...
3
votes
8answers
830 views
Page_Load called in Firefox, but not IE
I've been thrown into an ASP.NET project and I've got a page which contains a control that is fetched via AJAX.
The Page_Load function of the control does a little bit of logic necessary to get the ...
2
votes
3answers
253 views
Add OnLoad() in Page_Load()?
I have a few Database things to read in the Page_Load of my Asp.net page.
if (xxx == 1)
//Add OnLoad("clock()")
How to do this?
How to add a OnLoad-Method for a JavaScript clock in the page load ...
2
votes
2answers
140 views
which javascript files are NOT being used on page load
Is it possible to find out which javascript files are NOT used on a web page without having to add console logs or debug or removing them to see if things break?
I'm looking for a tool, or a command ...
2
votes
6answers
1k views
Javascript window.onunload fires off after Page_Load
I have noticed that window.onunload event fires off AFTER page_load event which makes no sense.
This behaviour is creating an issue for me - in my unonload I clear the session, so if the Page_Load ...
2
votes
1answer
3k views
Reading 'Checked' Property Of Dynamic CheckBox on Page Postback
Apologies in advance for the long-winded post, but I'm having some trouble with a .NET page I'm building.
END QUESTION: How can I check the 'Checked' property of a dynamically-created checkbox during ...
2
votes
2answers
1k views
Change an ASP.NET control's properties in a Repeater control
My question is fairly simple. This is what I have for the aspx page:
<ul>
<asp:Repeater runat="server" ID="linksList" OnItemDataBound="linksList_OnItemDataBound" >
...
2
votes
6answers
403 views
Including loads of css files and Javascript file - how do I optimize
Duplicate: Multiple javascript/css files: best practices?
Hi guys, my application is almost done but the thing is that I've noticed that I'm including a lot of external javascript files and css. I'm ...
2
votes
4answers
2k views
handle event before Page_Load
I have an asp.net web page with a ton of code that is handled in the Page-Load event of the page. I also have a dropdown box on the page that should reload the page with a new value, but I would like ...
1
vote
1answer
56 views
Effect of TCP RST on page loading time for Javascript script src tag
I want to deprecate (turn off/not send HTTP responses) for some old HTML & JS code that my clients have installed on their pages. Not all clients can update all of their webpages prior to when we ...
1
vote
1answer
227 views
Speed up web application compilation
I have tried looking at "related" questions for answers to this but they don't seem to actually be related...
Basically I have a VB.Net application with a catalogue, administration section (which can ...
1
vote
3answers
348 views
datatable columns not accessible C# ASP.NET
I have this datatable
public partial class class1
{
private DataTable dt;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
...
1
vote
1answer
128 views
get data from a querystring
i have this querystring that shall open up my page.
http://www.a1-one.com/newpage.aspx?email=er@old.com&stuid=123456
Now when this page loads, on page_load, I want to pick up email and stuid in ...
1
vote
5answers
363 views
I can not use Session In Page_Load and I got error bellow
why i got this error :
Object reference not set to an
instance of an object.
when i put this code in my page_load.:
protected void Page_Load(object sender, EventArgs e)
{
...
1
vote
1answer
110 views
Processing AJAX request in ASP.NET
I'm working with an AJAX button and label controls. When the user clicks the button, the data is updated in the label.
But after clicking the button, the Page_Load event occurs, and I don't want it, ...
1
vote
3answers
618 views
SQLDataSource binds Data twice :(
this problem is driving me really mad.
In an Asp.Net-application, I have two DropDownLists, DropDownStore and DropDownCampaign.
<asp:DropDownList ID="storeDropDown" AppendDataBoundItems="true"
...
1
vote
1answer
517 views
page_load in system.web.ui.page not called
I have been looking around yet I can't find any that fits in my problem.
I am doing this in c# asp.net visual studio 2005, i have a master page and removed the Page_Load event from there since i ...
1
vote
4answers
302 views
How can I determine the bottle neck on page load?
I have a page that uses jQuery UI, and calls the datepicker on 2 different text boxes. Without the calls, ie. just loading the page without attaching any datepickers, the page loads in 1.20 seconds. ...
1
vote
6answers
6k views
Page Load - Force Refresh in classic asp?
Topic says it. Short version: I need a way to force a refresh of the page on First page-load only. Would be easy in asp.net, but I've no idea how to go about this in classic asp.
Longer version: I'm ...
1
vote
0answers
74 views
Intermittent Problems loading type
I have a SharePoint site that I have added a few extra pages to in order to handle some custom AJAX requests.
Every now and then, about once a week, I get a call saying it's not working. When I look ...
0
votes
2answers
36 views
Run a Button Code On Page Load
I Have folowing Button code and setting to take user to google for login using openid.Through this code i have to click on the button to take user to google.But I want to take user to google on page ...
0
votes
1answer
87 views
jquery mobile ios/android page load order
I have a problem loading the page, first the header is loaded, then "content" without list, and finally the "footer". After loading the list into "content", the list moves "footer" at bottom of page.
...
0
votes
1answer
65 views
Page_Load not firing after Response.Redirect in ASP.NET
in a asp.net application i have a form, and after a user clicks a button i use Response.Redirect to go to another page. But in the second page the Page_Load event is not firing. I have tried to set ...
0
votes
2answers
157 views
Pages flashing white in Safari on loading or reloading content unnecessarily
I am wondering what might be causing the page flashing white briefly when I am navigating from page to page on a website I am designing in Safari (you can see the website here). In addition to this ...
0
votes
1answer
100 views
Dynamic Page/Replacing Content with a twist (wordpress)
I'm wondering how hard it would be to dynamically replace content in a wordpress site through the use of JQuery.
This is the article I'm going off of:
...
0
votes
2answers
36 views
Unhandled exception in page_load Event
There is an unhandled exception in Page_Load event , where can we handle these errors
0
votes
4answers
33 views
How do I hide a collection of HTML elements until the page is done loading?
I saw another question asked on Stack about not showing a page until its fully loaded. That isn't quite what I'm asking here. What I want to do is wait to show one form until the page is entirely ...
0
votes
1answer
136 views
how Prevent Twice Page_Load Running - Page.IsPostBack Is always false
in a strange situation my page_Load Runs twice and all of my codes are in page_Load.
i can not use Page.IsPostBac because in both of Page_Loads, it is false.
but what is strange situation ?
i have a ...
0
votes
2answers
189 views
jQuery / JavaScript “please wait” window while page is loading?
I’ve two individual pages which actual needs the same kind of function so I’ll combine them into one question.
The function I would like is a modal window while the page are loading but the different ...
0
votes
1answer
80 views
How to show a loading image until the page body background image loaded?
We need to show a loading image until the page large size of background image is loaded. This bg image will be called to body tag in the HTML file not through CSS.
0
votes
4answers
57 views
jQuery: Fire a function when there's a certain hash in the url…?
I'm looking to execute a function when the a page is loaded with a certain hash in the url.
So if I visit www.mypage.com/hello.html#functionplease then the code will execute.
Can anyone point me in ...
0
votes
1answer
150 views
ASP.NET VB Page_Load Only Once or Alternative
I'm a little stuck on what to do! I have a special form that allows my customers to request a quote for a specific product (defined by PID in url) The form is loaded inside a modal dialogue and within ...
0
votes
3answers
135 views
ASP.Net - WebForms - How to avoid several Page_Load events when a link is clicked
I am working on website using ASP.Net C# WebForms Framework 3.5
I am using Master page for design, and inside Master page I have two user Controls for Header & Footer.
When a user logs in, in ...
0
votes
1answer
49 views
WebSite Loading time
I'm developing a site which has a slider on home page.I'm using nivo slider.
The images in the slider are of sizes 1600*1200.Due to this the home page is taking too much time to load.
Is there a way ...
0
votes
1answer
71 views
Why does href link not work?
I have tabContainer with 2 tabPanels. Transition between tabPanels without page load but with Jquery. In second tabPanel I have something like that
<asp:CheckBoxList ID="ExstrasCheckBoxList" ...
0
votes
0answers
146 views
@font-face does not work in IE on initial page load, but does after that
We have a problem whereby we successfully implemented @font-face for IE6-9 as normal, and in fact on the client site in question it all worked fine.
Then we copied the skin over to two new sites for ...