| Thread | Last Post | Replies |
|
| BackgroundWorker and showing a panel. | 13 Jun 2006 19:06 GMT | 4 |
I am trying to set a panel (that holds a progress image) to be visible when a long running process is happening. Sounds simple, right :) What happens is the panel never becomes visible. The load and prerender events occur, but it is never displayed.
|
| Can you organize your properties in the misc area? | 13 Jun 2006 19:04 GMT | 1 |
I have a user control with exposed properties. I have about 100 properties. I would like to organize them so they are easier for other programmers to peruse. Is it possible to organize the misc section and add +/- sections to make it easier to read?
|
| WebPart events not triggered upon first logon | 13 Jun 2006 18:47 GMT | 5 |
I am involved with development of a Portal solution using ASP.NET 2.0 and WebParts. The WebParts framework use the default personalization providers, and the personalization data thus ends up in the aspnetdb database (which we have placed on a proper SQL Server, not SQL Server
|
| How to handle memory allocation i shared hosting environments? (GC.Collect) | 13 Jun 2006 18:36 GMT | 3 |
Hi, a customer is using our fairly memory intensive web app. in a shared hosting environment and the other day their host 'banned' (I think they just killed the process) them for memory abuse.
|
| HyperLinkColumn in a DataGrid | 13 Jun 2006 18:19 GMT | 2 |
I have a HyperLinkColumn in a DataGrid found in a Summary page. When the link is clicked on, I want to get the data for all fields in the database for that record and display this data on a Details page that does not display the data in a DataGrid but instead displays it in a ...
|
| Threading in ASP.NET (C#) | 13 Jun 2006 17:08 GMT | 5 |
I have a page that calls a sql procedure and it runs for 20 - 40 min. I use usual threading for this page. <code>Thread objthread = new Thread(new ThreadStart(ticketingThread)); objthread.Start();</code>
|
| classes under asp.net | 13 Jun 2006 16:57 GMT | 8 |
because asp.net class has a livetime of a active webpage (soon the user changed the page, all the values saved in the class is lost)... how do you manage to pass this? my idea was in global.asax create an application session like
|
| ASP.NET & MYSQL | 13 Jun 2006 16:56 GMT | 4 |
Is using ASP.NET with MYSQL a plausible option?? Do you loose a lot of functionality??? Is it combersome?? Buggy?? My company is considering migrating to .NET and MYSQL may very well be the
|
| running total of lines | 13 Jun 2006 16:36 GMT | 2 |
I'm creating a Excel spreadsheet and I need to add a total of how many lines were added to the spreadsheet. How can I keep a running total and then show the total of how many lines were added to the spreadsheet?
|
| getting a Session under a Class | 13 Jun 2006 16:31 GMT | 1 |
I have a session called for example Portal, like session("Portal") and I want to retrieve that value inside a Class... how can I perfor such task? I thought it would like:
|
| Are tables slow in rendering? | 13 Jun 2006 16:25 GMT | 3 |
I had somebody (who was an idiot) tell me that tables are slow in rendering? That you shouldn't do things like tables inside of tables. Is that true? I think she didn't know what she was talking about but I just wanted to
|
| ASP.NET 2.0 (64bit), IIS 6, Windows Server 2003 (64 bit) | 13 Jun 2006 15:41 GMT | 9 |
I'm having a bit of a weird problem and I've spent the last few hours scouring the web trying to solve this before coming here. Here is the problem: I get 404 errors for all ASP.NET 2.0 content trying to be served from IIS.
|
| DayPilot 2.0 - open-source event calendar (scheduling) control for ASP.NET | 13 Jun 2006 15:17 GMT | 1 |
Hope this will be useful to someone... I'm working on an open-source event calendar/scheduling control that allows showing calendar entries visually in an Outlook-like view. Recently I finished a release 2.0 that supports multiple-days view
|
| Select CSS stylesheet from C# | 13 Jun 2006 14:57 GMT | 7 |
I have written a registration aspx page that I want to "brand" based on a query string parameter passed to me on a redirect. Basically if the Service param in the query string is A I want to apply a stylesheet but if it is B I want to apply a different stylesheet. Is it
|
| DataReader Problem | 13 Jun 2006 14:05 GMT | 3 |
Can someone tell my why my DataReader doesn't read and create the array??? I think it is something to do with the reader = cmd.ExecuteReader line but I'm not sure what it be! Thanks
|