| Thread | Last Post | Replies |
|
| When To Use Server.Transfer vs Redirect and Cache | 31 Mar 2004 15:37 GMT | 7 |
I am confused about Server.Transfer and Response.Redirect. I have an ASP.NET app, and I want to pass values from one page to the next, in "wizard-like" fashion. For example, page 1 contains simple payment-plan options; page 2 contains a credit card data-entry form; page 3 contains a ...
|
| Caching User Controls | 31 Mar 2004 11:01 GMT | 2 |
I have a question about caching web user controls in ASP.NET. I have a few user controls that are VERY expensive to create, but they do not change very often. They only change when a user modifies certain things in the application. The intervals between changes could be a few ...
|
| Where exactly the cached pages are stored. | 31 Mar 2004 06:40 GMT | 3 |
Can any one tell me where exactly (Physical location) the pages are stored if i specify the location attribute for the outputcache does it vary Thanks for your assistance and time in advance Cheer
|
| HELP IN DEVELOPING A KNOWLEDGE BASE USING ASP.NET AND C# PLEASE REPLY SOON | 29 Mar 2004 20:37 GMT | 3 |
See ive created an inventory for a company it has various modules , like purchasing , workstation ,
|
| cache object doesn't work in global.asax | 29 Mar 2004 19:41 GMT | 2 |
Hi. I have a short question Does the Cache object work in global.asax? If no, then why In global.asax I have: Dim Cache as New System.Web.Caching.Cache Then when I insert to it: Cache.Insert("MyVar", MyVar), I get "Object reference not set to an instance of an object." at run-time
|
| Help! Serializing Viewstate Problems!?!? | 29 Mar 2004 06:22 GMT | 9 |
I thought that viewstate is inherintly serializable because its stored in a users browser in text (serialized) format?? Anyways - Here's the situation: I have some pages that have many grids on it and thus my viewstate was getting very large (75kb+) and it was slowing down
|
| HELP: Session is empty! | 25 Mar 2004 17:01 GMT | 2 |
I have a ASP.NET application with two frames (both are ASPX pages). Once my app starts running, Session_Start fires in global.asax, like it should. When I press a button within the top frame, it displays a chart (OWC) in the bottom frame.
|
| Caching the dataReader | 24 Mar 2004 19:39 GMT | 2 |
In my function I'm binding the list box: Protected WithEvents lstMedia As System.Web.UI.WebControls.ListBox to the dataReader. I put the dataReader into the cache.
|
| Dynamic Server Controls and ViewState | 23 Mar 2004 12:41 GMT | 2 |
Anybody ever dynamically add controls to an aspx page, save it to the StateBag and load the dynamically created objects from the statebag on postback? I dynamically create and add controls to a placeholder, add it to the
|
| What can I put in the application/session cache | 23 Mar 2004 12:41 GMT | 4 |
I am designing some custom ASP.NET controls, and I'd like them to make use of the Application and Session caches. I'd also like to ensure that my code will work if the user configures things to use a state server on another machine to hold the caches. Can I add any instance of any ...
|
| DataSet Persistance | 23 Mar 2004 12:41 GMT | 1 |
I'd like to persist a DataSet between page calls. Can someone give me specific code (VB.NET) examples of doing this using ViewState as well as an example using the Application Cache (I know how to get the DataSet, so please pick the example up from there)?
|
| output cache for backward navigation | 23 Mar 2004 12:41 GMT | 3 |
When a user revisits a page on our site via a menu dropdown, I'm required to display the page as it was when the user last left. (By the way, the browser back button is disabled.) The approach we use now is to rebuild the page with information stored in the cache (and ...
|
| ASP.NET Application Data Caching - Default Time | 23 Mar 2004 03:49 GMT | 2 |
Can you pls. let me know the default Cache time used by ASP.NET when I add the application data by the following line. Cache["Data1"] = Data1; I want to know how long the Data1 object will be stored in the
|
| asynchronous call back and session variables..... | 19 Mar 2004 16:12 GMT | 1 |
I have an asp.net webservice that is called from an asp.net website, the processes on the web service may take sometime so I call the webservice using the asynchronous method calls, i.e. BeginXXXX(), EndXXXX() etc... I pass a call back into the BeginXXX method so that when the ...
|
| general question | 12 Mar 2004 17:42 GMT | 1 |
2 questions: we have an n-tier architecture (UI, BL, DAL, DB) and some common classes that defy this structure like lookups. Those lookups actually handle their own db access... but that's not important.
|