3
votes
1answer
722 views
How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?
In this tutorial I am reading, Dave Ward creates a page that shows the server date in a label …
4
votes
3answers
528 views
Is there an open source Asp.net membership administration GUI (like netwebadmin, but works online)?
Visual studio 2005 comes with a project that lets you use the asp.net membership provider to look up, add, edit, and delete users and roles. It unfortunaltly can't be used online, and in order to h …
5
votes
5answers
1k views
Reference asp.net control by ID in javascript?
When asp.net controls are rendered their ids sometimes change, like if they are in a naming container. Button1 may actually have an id of ctl00_ContentMain_Button1 when it is rendered, for example. …
0
votes
3answers
194 views
Session and app pool: an ASP.NET app that stores and displays images
I have a .NET app that allows users to upload images to a directory within the webapp and then view them. The problem is that the session gets lost when I upload or delete an image in the webapp di …
4
votes
5answers
292 views
Should I precompile ASP.NET 2.0 sites before deployment or not?
Where I work, we do a very large number very small ASP.NET apps, and it has happened a few times that sites have been deployed in precompiled format, and the app needs to be changed, but the versio …
1
vote
4answers
161 views
How do I know when a session has ended when sessionState != InProc
I would like to have the session state in a separate process for my app, but I would also like to have some code run whenever a user's session is over. (changing a status string that indicates whet …
0
votes
Reference asp.net control by ID in javascript?
Oh, and I also found this, in case anyone else is having this problem.
Use a custom jQuery selector for asp.net controls:
…
1
vote
How to create folder in code behind page.
Hi. Before you do this, I learned the hard way that you should not create/remove folders under a running application, or you will cause your app pool to recycle. So make sure that you are creating …
