| Thread | Last Post | Replies |
|
| Moving existing application from using Session State InProc to SQL | 28 Aug 2007 17:03 GMT | 4 |
This is a follow-up to my earlier post about having issues with our application pool recycling. We currently use Session State InProc, but if I were to choose to move the existing application to SQL instead, would the only change in the application be the SessionState setting ...
|
| Stupid format question | 28 Aug 2007 16:48 GMT | 5 |
I know, this is a very simple question but... I want to bound an ObjectDataSource with a DropDownList. And I want to do it like that :
|
| aspnet_wp processes memory usage | 28 Aug 2007 16:39 GMT | 3 |
We are using a machine with win 2000 server and IIS 5. It hosts some ASP, ASP.NET 1.1 and ASP.NET 2.0 applications. The aspnet_wp processes memory usage builds up untill we are getting out of memory system errors.
|
| XmlTextReader - finding attributes and then children. | 28 Aug 2007 16:15 GMT | 2 |
I have an XML file that is a list of product models and info. The list will eventually contain about 100 products, each product having multiple elements for things like names, specifications, images...etc. Here is the XML Doc.
|
| CustomErrors for a 404 code | 28 Aug 2007 15:43 GMT | 2 |
Howdy, I'm using the following code, asp.net 2.0 <customErrors mode="On" defaultRedirect="oops.aspx"> <error statusCode="403" redirect="notfound.aspx" />
|
| session.timeout after page is refreshed | 28 Aug 2007 15:40 GMT | 2 |
I am working on a problem w.r.t session.timeout I have a code to redirect to this new page after 20 seconds. Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) - 1180) +"; URL=index.aspx");
|
| Html file control with multiple file selection | 28 Aug 2007 15:34 GMT | 2 |
we are using <input id="testFile" runat="server" type="file" /> control to select file from local machine. A problem with this control is at a time we can select only single file from 'Choose file' window.
|
| Server.Transfer from custom HTTP handler? | 28 Aug 2007 15:28 GMT | 1 |
I am having problems with Server.Transfer(string, bool) in the ProcessRequest method of a custom HTTP handler. I get the "Error executing child request" error message. The page that I am trying to transfer to is mapped to the same custom handler.
|
| decrypt decrypted string using convert.frombase64string() | 28 Aug 2007 15:13 GMT | 3 |
I took over a web app that the developer encrypted the connection string. The connection string looks something like this [mchckjkfiekifjfyhg} (example), he is reading the string as string con = ASCII.GetString(Convert.FromBase64String(ConfigurationManager ...
|
| How do I validate controls inside a repeater? | 28 Aug 2007 15:06 GMT | 4 |
I have a repeater that is being used to show products from a database. Inside the ItemTemplate is a DropDownList, that contains the numbers 0-5. The user can use this to set the quantity of that product that they wish to order.
|
| Dispalying data in a cell in gridview | 28 Aug 2007 14:34 GMT | 2 |
I've bind a grdiview to a database and it's working fine. but what I want to do is if the data in certain cell exceed the cell width the that cell will only show the words with some dots implying to the user that is more data that should be seen.
|
| Problem using Master & Content pages with Calendar pop-up | 28 Aug 2007 12:07 GMT | 1 |
I have a simple project where there is a master page called MasterPage.master and some webforms which are content pages. I also have a usercontrol which is a simple calendar control popup. The folder structure is as follows:
|
| DirectorySearcher | 28 Aug 2007 09:24 GMT | 1 |
Hi, I have this code sample in my window application project : DirectorySearcher mySearcher = new DirectorySearcher("(CN=WMLIN2)"); foreach( SearchResult resEnt in mySearcher.FindAll()) and it works
|
| Get the username and password of a registered user | 28 Aug 2007 08:44 GMT | 1 |
There is a problem with the default SMTP mail provided by ASP administration tool so i configured SMTP mail and i want send the password to his mail when a user want's to recover his password. The username and password
|
| dynamically create multiple instances of usercontrol in codebehind | 28 Aug 2007 07:29 GMT | 1 |
I created a user conrolt in C# and want to create multiple instance (one by one) of usercontrol onclick of button. if i hard code in .aspx page like <%@ Register Src="~/UserControls/AddPhaseMilestone.ascx" TagName="AddPhaseMilestone" TagPrefix="uc1" %>
|