| Thread | Last Post | Replies |
|
| Creating controls dynamically based on user input | 01 Nov 2007 09:21 GMT | 4 |
I can think of a lot of reasons why this might need to be done but as far as I can tell it's not possible. I've been looking for a way to add HtmlTableRows to a table using a button click for a while and it seems it's not possible because the row that gets added with each
|
| User control to custom control | 01 Nov 2007 07:14 GMT | 3 |
Whats the best way to convert a user control to a custom server control? i.e. I created a .aspx control using the designer to create the look of the control. I now want to use this in other projects and compile it as a dll. However, I understand that I now need to create the ...
|
| Asynchronous HTTPModule executes synchronously ? | 01 Nov 2007 06:57 GMT | 4 |
I need to write asynchronous HTTPModule which will sometimes execute long job. I've written it using AddOnBeginRequestAsync but it still executes synchronously - I am checking performance counters but after running X requests which executes this "asynchronous" module all other ...
|
| Unhandled Exceptions and Maximum request length exceeded | 01 Nov 2007 03:16 GMT | 1 |
I have an HttpModule used for Unhandled Exception processing. The module monitors both application.Error += new EventHandler(OnError); //regular UHE AppDomain.CurrentDomain.UnhandledException += new
|
| List of sessions on server | 01 Nov 2007 03:13 GMT | 1 |
For Admin purposes I want to be able to list all the sessions running on the IIS server. I would expect that I could get info like Username and other sessionvars that my application has set. This way I can debug. Can you direct me to info like that?
|
| how to exit? | 01 Nov 2007 03:11 GMT | 3 |
strSQL = Server.MapPath("remessa\\") + "CSG" + (DateTime.Now.Year.ToString().Substring(DateTime.Now.Year.ToString().Length - 1) + DateTime.Now.Month.ToString("00") + DateTime.Now.Day.ToString("00")); for (int i = 1; i < 1000; i++)
|
| Best way to empty a listbox with large amounts of data | 01 Nov 2007 02:55 GMT | 1 |
I have filled a div with around 10000 items of data. I have got it loading in around 2 seconds but when I come to empty the div by setting innerHTML to "" it takes ages, about 20 seconds to clear. Can anybody tell me a quicker way of clearing the contents of a DIV. I have
|
| Two question about Master Page | 01 Nov 2007 02:49 GMT | 4 |
I have two questions about the use of Master Page: 1. How to access properties and controls in the master page from content page? (I know I can use the "FindControl()" method of the "Master" Property to access the controls. But how can I access the
|
| Memory usage and large number of pages | 01 Nov 2007 02:44 GMT | 8 |
I have migrated my asp application to asp.net some time ago - but I am still having some difficulties in understanding the best way to mange some tasks. I currently have a page that loads a aspx web page - this page is continually refreshed - every 5 seconds or so. To do this I ...
|
| Problems with Repeater | 01 Nov 2007 02:37 GMT | 2 |
I'm trying to put this in a Repeater and it's not working it says HyperLinkField does not exist, if it really doesn't exist then what do I use that can do basically this: <asp:HyperLinkField DataNavigateUrlFields="City,State,ZipCode,MedianSales"
|
| ListView EditItemTemplate | 01 Nov 2007 01:07 GMT | 5 |
I'm trying to get access controls in the EditItemTemplate of a list view when the user edits an item. I need to set focus to a textbox in this template after post back because the ListView is in a long scrolling div. Without setting focus the user needs to scroll down the
|