Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > asp.net > december 2003 > threads for saturday december 6

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Loading an image into an Image control
Posted by jake NO[at]SPAM qucode.com at 12/6/2003 11:32:30 PM
I am a beginner in C# and web controls. I need a way to load an image which is stored in an Access (mdb) field into an Image control added at runtime. I get the image (jpg format) dynamically at runtime then I create an Image control (from WebControls collection) and add it to the page also a...more >>

repeater + hierarhical data
Posted by jernej goricki at 12/6/2003 11:13:34 PM
Which is the best way for displaying parent child records (not arbitrary, just 1 sublevel) using a Datalist or better a Repeater control? Thanks ...more >>

Reload after going back
Posted by cgdev1 NO[at]SPAM yahoo.com at 12/6/2003 8:44:51 PM
Newbie here. I figured out how to use jscript and history.go(-2) to go back to a previous page. However, I want that page to reload in order to show the updated information. i.e. -user is on pageX, clicks link to pageY -user adds "John Doe" in a textbox and clicks on a submit button (this ...more >>

SmartNavigation doesn't work on published page (Newbee q)
Posted by Grober at 12/6/2003 8:33:00 PM
Steve C. Orr was kind enough to help find SmartNavigation, and it worked fine when I had my aspx page locally on my computer. However, when I publish it, the problem is still the same: when the page is reloaded after a dropdownlist's contents has been modified I have to scroll down to where I wa...more >>

redirect errors to a debugger
Posted by Mr. x at 12/6/2003 8:16:23 PM
How can I redirect any error that occurs in an html page to a debugger. (For some reason, this option is disabled on my computer - I want to enable it again). Thanks :) ...more >>

several applications in a virtual directory
Posted by Max at 12/6/2003 7:21:05 PM
I have several web applications I'm trying to upload to my web site, but it seems to be only letting one run at a time. It's totally ignoring the new bin folder in my subdirectory. Is there anyway around this? I do not have access to IIS on the remote machine, nor the ability to make a subdire...more >>

some questions about asp.net
Posted by Servé Lau at 12/6/2003 5:48:29 PM
I have been rewriting a C++ isapi into a C# asp.net application, but because it was my first one and created within a tight schedule I have some questions to make sure if I did it right. 1. Does asp.net create a new instance of the Page class for every request? 2. I created a class for the ...more >>

Authentication question
Posted by Bruce W..1 at 12/6/2003 5:25:47 PM
My simple ASP.NET application displays information pulled from some text files. The text files are located in a subdirectory of the virtual root. I have another .aspx page that lets me add more text files to this subdirectory by typing stuff in to a textbox. For this page I needed authentic...more >>



IE File Download Reanme Issue
Posted by ML at 12/6/2003 1:50:21 PM
I have an ASP.NET component for listing files for download. If the file has multipart extension such as "file.abc.def" when the link is clicked to download the file IE renames it to "file[1].abc.def" If the file just has a normal extension all is fine. I had this same issue with old ASP so I...more >>

schedule a time based event
Posted by TJS at 12/6/2003 12:35:56 PM
does asp.net have anything which will allow scheduling a time based event ? ...more >>

Server.Transfer() causes an error
Posted by yma at 12/6/2003 11:54:21 AM
Hi, I put a .aspx page inside Server.Transfer() within a button. The page was created for testing so it only has button and I did not add code. When I click the button, it gave me an error below. Could try this and help me? Thank a lot. --Chris Server Error in '/mysite/WebApplication1' ...more >>

ASP Life Cycle Problem
Posted by Michael Johnson Jr. at 12/6/2003 11:05:03 AM
The problem is the following pseudo code causes you need to click buttons twice to get event. This is notable via debugging and single stepping. I can't seem to quite figure out how to do events in ASP where they need to rerender the page. I been banging my head on this for 4 days now...more >>

Session Time out
Posted by Jim Heavey at 12/6/2003 10:07:08 AM
If I have Session variables and that I depend on and then the session times out, how can I detect this situation and "end gracefully"? ...more >>

retrieving data from mysql thro c#
Posted by kbs at 12/6/2003 7:26:58 AM
Hi all, i'm new here, and I just beggining with c# so.. I'm brazilian, and I already get connect to mysql using MySQLDriverCS, but I can't display data on a datagrid or thro an aspx file. can anyone help me? or just tell me where i can get help for this? thank you. kbs...more >>

Copy SQL 2000 Database
Posted by Ryan at 12/6/2003 7:23:11 AM
I am creating an ASP.NET application using C# Visual Studio .NET 2003, and have set up the project using a local instance of MSDE (SQL Server 2000 Desktop Edition). This database has multiple tables as well as Stored Procedures and Database Designs (relationships, etc). How, when I create ...more >>

Strange Javascript Cookie Behaviour
Posted by Joe at 12/6/2003 12:35:31 AM
Hi folks, Been looking at this for the day so any ideas would be appreciated. Here's the scenario, bear with me - it looks more complicated than it is :) I have a page templating system that inherits from the page class and adds a mixture of usercontrols and literals when requested. One o...more >>

HTTP Posts
Posted by Ben at 12/6/2003 12:23:53 AM
Hi, I have several forms that need to post data to a remote site and currently they just do a POST action with the data. I am trying to centralise the code which manages the parameters for easier upgrade and maintenance, so i was thinking of having all the form 'submit' buttons just pass the dat...more >>

Preventing page reload when using control (newbee q)
Posted by Grober at 12/6/2003 12:03:54 AM
How can I stop the asp page from reloading when I e.g. hit a button or change the selected index of a dropdownlist to update another control on the page? The updating part works fine, when I select an item in a dropdownlist, another dropdownlist list is updated with relevant items. The problem is...more >>


DevelopmentNow Blog