| Thread | Last Post | Replies |
|
| Server Transfer and Back/Refresh... | 21 Feb 2006 19:06 GMT | 3 |
Apparently, our developers used "server transfer" in our ASP.NET, and because of this Back/Refresh presses by users are problematic. Apparently the server has information about state and other things that the browser does not. The application could get very confused on ...
|
| No Web Site Administration Tool after Deployment?? | 21 Feb 2006 18:49 GMT | 5 |
I am finding this hard to believe... Is there really no way to access the Web Site Administration Tool when a site is deployed? I know I can open it on my local computer running VS.Net, but what
|
| writing a simple code generator | 21 Feb 2006 18:45 GMT | 2 |
I've played with some code generators; they all have what appears to be aspx web pages run from a desktop program. The pages have a code section and a section where they use <% %> operators to instantiate content. I have a very specific and surgical need and want to do this from a ...
|
| problem dynamically removing items from a droplist..? | 21 Feb 2006 18:32 GMT | 2 |
i have the following HTML code: -------------------------- <asp:DropDownList id="hddList" runat="server"> <asp:ListItem Value="1">Item 1</asp:ListItem>
|
| DataList - Firing an event for a drop down list box in the header | 21 Feb 2006 18:32 GMT | 1 |
I'm having a problem with the DataList control, my situation is as follows... I have a DataList with a Drop Down List Box (DDLB) in the header, this DDLB is set to AutoPostBack = True. When the selected value in the DDLB is changed the page does post back however no event is fired ...
|
| Type.GetType() | 21 Feb 2006 18:28 GMT | 3 |
After the following line: Type myType1 = Type.GetType("System.Drawing.Color"); myType1 is "undefined". Why is this? I expected it to be type System.Drawing.Color.
|
| Error Handling in a DAL | 21 Feb 2006 17:50 GMT | 7 |
I'm trying to create a DAL and am wondering what's the proper way to handle errors in this Insert method. public string Insert() {
|
| site asking for username and password | 21 Feb 2006 17:21 GMT | 3 |
I have a asp.net site. Whenever I put siteurl onto the IE it asks everytime for username and password. How do I avaoid this? Is there any setting needs to be done at IIS server? Thanks and Regards,
|
| web.config and "copy web site" issue | 21 Feb 2006 17:17 GMT | 1 |
(Using aspnet 2.0) I'm having problems copying my web site to my production server. I my web.config, I have <connectionStrings>, <appSettings> etc. sections, that must NOT overwrite my production web.config settings.
|
| ASP.NET 2.0 SmartNavigation vs MaintainScrollPositionOnPostback? | 21 Feb 2006 16:11 GMT | 3 |
I have just started created a web app in asp.net 2.0. I am using a masterpage for header/footer stuff. In my content page I am using MaintainScrollPositionOnPostback, and while it does keep the scroll position there is a lot of flicker on
|
| Mobile Internet Toolkit for Visual Web Developer Express? | 21 Feb 2006 15:45 GMT | 2 |
can I use the MIT to develop mobile pages with Visual Web Developer Express. What can I else use? Regards, Franz
|
| How to protect downloadable files? | 21 Feb 2006 15:07 GMT | 1 |
We have a web site which needs user to login. After login, there are some files available for download on some pages. A typical link of such file is like this one: https://www.ourdomain.com/docs/contracts/c_02102006.pdf I noticed that any one could get this file if the person knows ...
|
| Avoid calling events on page refresh | 21 Feb 2006 14:56 GMT | 2 |
I want to avoid the events being called when page is refreshed. For eg: I call a button event that modifies some data in the database. If i press F5 on the same page again the button event is fired and data is modified. How do I avoid it?
|
| reading CSV record in an array | 21 Feb 2006 14:32 GMT | 3 |
I read a CSV file using a stream reader. I read a complete line using readline. I need to get hold of each column. I can't use split function with a comma cos the contents in the columns might have comma too.
|
| drag & drop from listbox to listbox? | 21 Feb 2006 14:24 GMT | 1 |
I would like to select items from a listbox into another listbox using drag and drop functionality. Does ASP.NET 2.0 webparts support this? Or any open source free framework? I am not looking for anything Atlas based. John dalberg
|