Tagged Questions
The page-init tag has no wiki summary.
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?
2
votes
1answer
1k views
dynamically created radiobuttonlist
Have a master page. The content page has a list with hyperlinks containing request variables. You click on one of the links to go to the page containing the radiobuttonlist (maybe).
First problem: ...
1
vote
2answers
199 views
Alert message on Page_Init
I have a security class that is called by a PageBase class (that all pages will inherit from) that will redirect the user to either the home page or the login page (depending on if they're logged in ...
1
vote
2answers
610 views
Dynamic Columns and Data Sources with .NET Grid View
I am working on a multi-purpose page and rather than adding multiple grids to the same page we wanted to use a single GridView to the page, and on Page_Init add the needed columns, and set the ...
0
votes
2answers
51 views
How to use pageinit correctly?
I have a single file for each page and i am trying to implement the pageinit event handler on every page (I think what belongs strictly to one page, should be declared there) as shown below:
...
0
votes
1answer
130 views
JQuery Mobile how to run script only once on pageinit
I've got a problem with jquery mobile and nested-lists. When I load the page for the first time it looks great, but when I navigate in the jquery mobile list it dosn't run the script because it's in ...
0
votes
0answers
64 views
Is it possible to transpose document.ready() to pageCreate?
basically I am wondering if its possible to transpose anything that runs on document ready to run on jQm's pageCreate?
Reason being I am really struggling to find a way of making jQuery mobile work ...
0
votes
2answers
33 views
In what “event” should i put the -account-ID-session code?
I am currently building a new site, where my customers get their own subdomain.
for example:
user1.mydomain.com
user2.mydomain.com
userDef.mydomain.com
...
The site is built in and running on: IIS, ...
0
votes
4answers
234 views
ASP.Net - Page_Load and Page_Init get called on each button click?
So I have absolutely no logic in my code.
I have the two methods Page_Init & Page_Load
Both methods get called every time I click the button.
It makes sense for Page_load to get called. But why ...
0
votes
2answers
41 views
page lifecycle and not being able to display controls outside of page_init when trying to create them programatically
I'm creating a page that users can upload a file to the webserver. After upload the page will then have a link to the file that has just been uploaded, along with any other files that have already ...