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 > january 2004 > threads for sunday january 11

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

Shut down of asp.net process.
Posted by Anders Both at 1/11/2004 11:50:47 PM
If no pages in my asp.net web-system, is being requested for some periode, it seems like the asp.net process is shut down automaticaly. Is this a normal behavior, or does my system contains some kind of bug or wrong configuration ? I don´t want my asp.net process to ever shut down, because I w...more >>


how convert contents of string variable to label id
Posted by tony collier at 1/11/2004 11:16:32 PM
Hi all I have the following in my html page: <asp:Label id="name1" runat="server"/> and this code in my <script> section string var="name1"; var.Text="whatever"; this won't work as is because it is seen as trying to execute the method Text on string var. Is it possible to extr...more >>

Unable to create web project
Posted by Herman at 1/11/2004 10:29:34 PM
Hi group, When I open a new ASP .NET Application project from VS.NET, I had window showed 'Web Access Failed' with following error msg: The default web access mode for this project is set to file share, but the project folder at 'http://localhost/Spikeshop' cannot be opened w...more >>

DataGrid Question
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 1/11/2004 10:04:03 PM
When I defined Sub OnItemCommand() Action XXX XXX End Sub If there are any method to stop raising the OnItemCommand when I click a button? ( I don'w want to edit the code inside a onItemCommand) Thank you very much...more >>

Speech Web Application
Posted by Sateesh Kumar E C at 1/11/2004 9:11:10 PM
Dear all, I have developed a voice-enabled(SALT) web application on Windows 2003 platform using SASDK Beta 4 using VisualStudio.NET. When I run the application it collects some speech input from the user and redirects to another web application(which is not voice-enabled) developed by us. But...more >>

Problem updating an access db with ASP.NET
Posted by Mark at 1/11/2004 8:58:11 PM
I'm having a problem updating recordsin an Access DB table. I can update other tables in this db with no problem, and I can dreate new record in all of the tables (including this one.)> But I can't seem to update it. I keep getting this error: System.Data.OleDb.OleDbException: Data type mi...more >>

Array Caching
Posted by Aaron at 1/11/2004 6:58:37 PM
I would like to cache a list of names of the last 5 users in server cache. and when a new user visits this page it would delete the oldest user in the last and add the new user. pseudo code string[] actUserList; actUserList[] = (string[])Cache[("AUL")]; //delete oldest user code Cache...more >>

RedirectFromLogin Fails
Posted by Mark Olbert at 1/11/2004 6:44:03 PM
I have an ASP.NET application that refuses to honor the RedirectFromLogin() method of FormsAuthentication. What happens is, when I try to access a restricted page, the login page gets brought up, I enter a username and password, which are validated, and then the redirect gets called. Unfortu...more >>



Buttons Opens a new window
Posted by netnews.comcast.net at 1/11/2004 6:27:24 PM
I am wondering what the best way to have a button on a webform open in a new browser window. I have a webform with a ComponentOne report on it, and I want to export to excel, but when they click the export button I want it to open in a new window. I know I could do it in client side javaacsript...more >>

Setting up validiation check for dropdownlist box
Posted by Hai Nguyen at 1/11/2004 4:17:49 PM
I wonder if there is a way we can make user select dropdownlist box before they can go to the next page I did use validiation control but seem it fail ...more >>

UserControl and sending/getting information from it
Posted by Cederstrom at 1/11/2004 4:04:38 PM
Hello Group, I have created an ASP.NET page. The page consist of the following items: - Button A - Button B - UserControl When I press Button A, I execute the following code: ViewState["pdbmode"] = "edit"; Session["pdbmode"] = "edit"; When I press Button B, I execute the following c...more >>

HELP
Posted by Lucrefy at 1/11/2004 3:12:06 PM
i had writen a programing that couldn't open SQL SERVER connection after it had been transfered to Web Server. and when it is in my computer which build it,it run in gear.(in same connection strings) why? Thanks!! ...more >>

Masking a textbox as phone number box
Posted by Hai Nguyen at 1/11/2004 2:55:18 PM
Hi All I have a textbox want to mask as phone box. How can I do it? Thanks ...more >>

Still having postback problems
Posted by Steve at 1/11/2004 12:12:18 PM
I have remade this page from scratch, it still won't work. I think I have finally got some clues that might be useful. I have 3 <input type="file"> controls on the page. If I use 2, that is if I click the browse button and choose a file, the page works correctly, by breakpoint in Page_Load()...more >>

Requested registry access is not allowed
Posted by Gary at 1/11/2004 12:11:40 PM
When I try... If Not EventLog.SourceExists( _ "myApplication") Then..... I get an exception with message = "Requested registry access is not allowed" I'm running on my dev box where I am the administrator on my XP pro machine. I can't find this phrase anywhere in msdn. Anyone know wh...more >>

would this be a possible use of an HTTPHandler?
Posted by Steve at 1/11/2004 11:57:30 AM
let's say that I have a webpage with an <img> tag and it has an invalid src attribute, that is the image it points to doesn't exist. Is there any way to catch stuff like that and handle it? For example, if I detect a missing image, I could instead return a NoImageAvail.jpg image instead? Wei...more >>

Page reload
Posted by Prince at 1/11/2004 11:22:25 AM
Is it possible to reload a page from the server? I have a user control (login) on the page. After a user logs in, I want to reload the entire page again. Why? The Page_Load() of the page executes before the Page_Load () of the user control. After the user control Page_Load runs, I se...more >>

VB to C# conversion help
Posted by Russ at 1/11/2004 11:00:14 AM
I am trying to convert this VB code to C#. Can someone give me a hand. The code is for exporting a crystal report to a PDF using a memory stream. Here is the VB: Dim s As System.IO.MemoryStream = oRpt.ExportToStream(ExportFormatType.PortableDocFormat) ' the code below will create pdfs i...more >>

ASP.NET State Service
Posted by mg at 1/11/2004 10:54:47 AM
I'm trying to store session state in a Windows Service. I start the ASP.NET State Service and modify the Web.Config file to include <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" timeout="20" /> But I get the following error...more >>

ACCESS -> (XML + XLST) -> to files
Posted by Hai Nguyen at 1/11/2004 10:52:24 AM
Sorry I don't have code yet. I'm asking for solutions which can help me solve the problem. This is the first time I have to cope this situation, hence I'm clueless how to start. I would like to ask for some ideas then I can start from scratch. Let's say: I have a dataset which has a table Cust...more >>

Calenar Popup
Posted by Kelvin Nguyen at 1/11/2004 10:39:50 AM
Hi everyone I'm making page which will provide date for the user. I would like to use calendar provided by .NET. It should look like this ----------------- (icon) I would like to know after user hits calendar icon, then a calendar pops up, user selects their interest date, and after tha...more >>

REPLACE SESSION IN CURRENT CONTEXT!
Posted by istavnit NO[at]SPAM ameritech.net at 1/11/2004 7:25:35 AM
Is it possible to point current context's session to another active session based on a SessionID?...more >>

Complex webform
Posted by Kenneth at 1/11/2004 6:40:01 AM
Hi, I've tried to do a calendarForm that should be reused from many forms. It will return a datetime object in a session variable. I have a webform (parentForm) that has a dropdownlist, a few textboxes and two imagebuttons. AutoPostback is true for the dropdownlist and thus affects at ...more >>

Hi
Posted by Achyut Babu at 1/11/2004 6:29:29 AM
I ve got experience in ASP I want to know some basic concepts of .Net Framework can anybody help me...more >>

including aspx page
Posted by dhj NO[at]SPAM bezeqint.net-dot-il.no-spam.invalid at 1/11/2004 6:08:45 AM
hello, i want to include aspx page within aspx page (vb.net) , can someone tell me how to do it? thank you ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==---- http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups ---= 19 East/West-C...more >>

Updating site database remotely
Posted by John at 1/11/2004 1:49:53 AM
Hi We have our web site remotely hosted by a service provider. What we need is to from time to time remotely upload transactions to the site from our office vb.net database app, so the site can display the information for site visitors. I am considering two scenarios, could someone tell me whi...more >>


DevelopmentNow Blog