0
votes
1answer
16 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 …
0
votes
2answers
21 views
page refrehing after a time limit and incrementing a value
Hi friends,
I have an asp.net web application in c# script.
I want this application page to refreh after every 30 seconds or 60 minutes of time.
I have written my codes in its page_load event.
…
3
votes
3answers
160 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 …
0
votes
3answers
214 views
GridView.PageSize set to default 10 on 1st page load
I am using C#, .NET 3.5. I have a GridView control with dynamically bound DataSource and I set the PageSize dynamically in the Page_Load event handler. I have set AllowPaging = true on the control.
…
0
votes
1answer
326 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 …
0
votes
0answers
145 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 …
1
vote
2answers
285 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" >
…
0
votes
3answers
189 views
Why are textboxes in my page getting focus on pageload?
I have a page with textboxes and buttons. When the page loads, often times, focus is in one of the textboxes and I don't want this to happen. However, I don't want to use something like setfocus in …
0
votes
8answers
301 views
Page_Load not being called on re-navigation
Hi All,
I am having a strange problem. Here is the scenario
Here are my files:
Project1.aspx
Project2.aspx
They are set up the exact same, including their Page_Load functions:
Protected Sub …
0
votes
3answers
969 views
ASP.NET 3.5: Display UpdateProgress during Page_Load()
I am building an ASP.NET site using Visual Studio 2008 and have a page looking like this (stuff snipped)
<asp:Content ID="Content2" ContentPlaceHolderID="PageContentPlaceHolder" runat="server">
…
3
votes
10answers
2k 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 …
1
vote
6answers
1k views
Page Load - Force Refresh in classic asp?
Hey,
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 …
3
votes
2answers
616 views
page load() or page init()
In asp.net, when do you bind your gridviews? at Page Load() or Page Init()....why?
1
vote
6answers
233 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 …
1
vote
4answers
142 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. …
