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 > april 2004 > threads for saturday april 24

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

Am I Just a Big Sook?
Posted by spamfurnace at 4/24/2004 10:15:28 PM
Hi All, This thread may be a bit off topic and i apologise in advance to those newsgroups purists out there. But i wanted a little feed back from others in the same game as me. Below is my email of complaint regarding some service or lack thereof that i received from my a hosting service we ju...more >>


Problems using InstallUtil
Posted by Rob Meade at 4/24/2004 8:59:34 PM
Hi all, I've just followed an article regarding the creation of a windows service - so far so good - right up until I try to do the install... I get the following error message in the command prompt: Exception occurred while initializing the installation: System.IO.FileNotFoundException: ...more >>

Calling ASP.NET server side subroutine from javascript
Posted by asadikhan NO[at]SPAM hotmail-dot-com.no-spam.invalid at 4/24/2004 8:34:59 PM
Hi, I have a timer in javascript on my ASP.NET page. When the time expires (a point in my javascript code) I want to call a subroutine in my ASP.NET page. But I can't seem to figure out how to do this. My subroutine is actually a function I call as a result of a button click. But if the user ...more >>

Newbie webform page layout question
Posted by deko at 4/24/2004 6:41:38 PM
How do I incorporate large areas of text with small areas of webform? The book I have shows examples of how to make webforms, and how to make HTML pages - but it seems I need to mix the two to get a page that looks anything like what I see in the real world. Do I just open my webform in HTML ...more >>

Newbie seeks a little assistance..
Posted by Rob Meade at 4/24/2004 6:21:36 PM
Hi all, I have been using visual studio at work now for several months and have produced a couple 'small' apps - however - this weekend as time was running out I figured I'd carry on with the project at home... I have installed visual studio 2003 at home, I have a web setup under IIS, and I...more >>

Returning Parser Error... Please somebody, anybody
Posted by Jim Mace at 4/24/2004 5:21:02 PM
After copying my project from our testing server (Windows server 2003) to my local machine (Windows XP Professional), via unzipping a ZIP file, for continued development I continuously receive the following parser error Could not load type 'alss.tenant.plan.bathing (then it highlights, in red, th...more >>

Is it possible to set the DataKey property of a DataGrid manually?
Posted by Alex at 4/24/2004 4:24:06 PM
I'm wondering how I can add data to the datakey property of the DataGrid. It seems to be read only. How can I populate it? I'm using data bound columns, however do not autogenerate the entire grid table. ...more >>

CheckBox Bound to DataReader column inside DataList
Posted by Bigtoga at 4/24/2004 3:41:35 PM
Okay - I'm going crazy here trying to figure out how to do this - here goes: I have a DataList populated by a DataReader. In the DataReader, a column is present called "IsInCategory". I want to have a checkbox bound to that column (bit in SQL Server). I have tried everything and can't see a ...more >>



Best way to open popup window on page load if session variable empty?
Posted by David Hearn at 4/24/2004 3:16:02 PM
I have a need to open a popup window from one of my forms if a particular session variable is empty. What is the best way to do this? Once the popup opens, the user will make a selection from the window, the session variable gets filled, the window closes, then no more popup window because the s...more >>

Dataset filtering for Authenticated users
Posted by Nugs at 4/24/2004 2:19:25 PM
Hey there guys, This is the first time I am working with forms authentication. That said here is a really simple/stupid question: Once the user is authenticated how do I filter the datasets for there specific records. I have a common field in most of my tables in the DB called 'MemberNum' it w...more >>

how to unload the web user control
Posted by buran at 4/24/2004 2:16:57 PM
Dear ASP.NET Programmers, I am loading a web user control ("taclient.ascx") into a placeholder (ID: phFA). The web user control contains a cancel button (ID: btnCancel). I would like to "unload" the web user control when the user clicks on the cancel button. How can I accomplish this? Thanks i...more >>

asp.net
Posted by sreeju at 4/24/2004 2:07:57 PM
i have added two text boxes programatically it gets displayed when i press abutton how to retrieve values from these two text boxe - sreej ----------------------------------------------------------------------- Posted via http://www.codecomments.co ----------------------------------------...more >>

Accessing Web Forms Controls with javascript
Posted by Red at 4/24/2004 2:03:49 PM
Can you access web form control via javascript ie.. if I have <asp:textbox runat=server id=txtTextbox/> can I say in javascript txtTextbox.Enabled = true; ?? ...more >>

Registerd Client Script Not Working
Posted by Red at 4/24/2004 1:41:37 PM
I am trying to call some java script from an ASP:Checkbox control. My code is as follows: Dim PilotCheckScript As String = "<script language=javascript >" & vbCrLf & _ "function PilotCheckChanged(){" & vbCrLf & "alert(""Check Changed!"");" & vbCrLf & _ "txtPILOT.Enabled = !chkPILOT.Check...more >>

concurrent connections
Posted by stephen at 4/24/2004 1:16:03 PM
Hello, I am using ASP.NET as a streaming engine for mp3 and ogg files over HTTP. Basically, the asp.net page sets it's mime content type to audio/mp3 and i write out the file to the stream. We will be having anywhere from 50 to 300 users streaming at once (as well as standard asp.net web pages ser...more >>

current directory of WebForm ?
Posted by Chris at 4/24/2004 1:04:52 PM
Hi, how can I obtain the name of the directory where my aspx-file is located ? I tried : string str = Directory.GetCurrentDirectory(); DirectoryInfo dir = new DirectoryInfo(str); but Directory.GetCurrentDirectory() returns "C:\WinNt\System32" whereas my current aspx-file is loca...more >>

Please help me with this error!!!!!!
Posted by William Gower at 4/24/2004 12:12:30 PM
expression expected!!!! <asp:TemplateColumn runat="server" HeaderText="Customer" > <ItemTemplate> <asp:label runat="server" Text='<# DataBinder.Eval(Container.DataItem, "PrimaryName") + " - "...more >>

add textbox and command button on the datagrid
Posted by Grey at 4/24/2004 11:34:35 AM
my idea is want to add textbox on the datagrid. the data of the textbox = was extract from DB. use can change the value on the textbox anytime. = after the change, user just click the button on the datagrid to save to = DB. Is it possible to do that??? and how to ?? Million Thanks.....more >>

Problem Accessing WebForm Controls from a Dynamically created control (C#)
Posted by rduke3 NO[at]SPAM austin.rr.com at 4/24/2004 11:24:47 AM
I have tried everything I can think of to change the visible property of a design time created control from a dynamically created control's command event handler. Here is the scenario. I have a WebForm with some textboxes, dropdownlists, a panel, imagebutton and so on. When I click on the i...more >>

Bad ViewState values for dynamically added checkbox
Posted by eSapient at 4/24/2004 9:39:27 AM
I created a web page which contains a form which contains a table. The number of rows for the table are determined dynamically. The first cell of each row contains a HyperLink control and the last cell contains a CheckBox control. In order for the ViewState mechanism to work correctly, I: 1. c...more >>

Calling COM Components on Client Machine from WebForm
Posted by Dan at 4/24/2004 9:38:02 AM
Is it possible to call a COM component which resides on client machine from within a webform? In other words, you load http://www.mystuff.com/myform.aspx in your browser, and then click a button, and the event code for that button creates a COM component on the client machine and does something...more >>

Loading another webform after button click
Posted by Dan at 4/24/2004 8:59:43 AM
I want a user to be able to click a button on one webform, and if the fields on that form are filled in properly, I want the app to load another webform in the same virtual directory. How would I do that? ...more >>

Help please, custom 404 error
Posted by qdfqdr NO[at]SPAM yahoo.co.uk at 4/24/2004 7:54:26 AM
Hello this is robert, I need some suggestion, I have a website, hosted in windows 2003 server,shared hosting. I would like to have a custom 404 error page, for missing files. In the help file of my internet provider they said to do it in .NET, like this web.config <configuration> <syste...more >>

How to get the theme information?
Posted by Laser Lu at 4/24/2004 4:46:03 AM
I wanna get the information of the client side Windows. Not only the version of Windows, but also which theme that Windows uses are necessary. The question is how to get these information from the server side by using ASP.NET?...more >>

Can't get Set-Cookie headers after posting to Forms Auth. login page
Posted by Iggy Evans at 4/24/2004 1:41:02 AM
Hi My app is trying to login to an ASP.NET site that uses Forms authentication. I am trying to do in my app (what was previously posted in a newsgroup) the same that a browser does 3) The browser requests the login page specified 4) The server responds with the login pag 5) The user fills in t...more >>

scheduling thru posting on a public webhost??
Posted by Ivan Demkovitch at 4/24/2004 12:07:18 AM
Hi! If I understand caching properly: 1. Create object in cache and set expiration Time to let's say 1 minute 2. Specify delegate which will be called on object expiration. Here we will restore object and do some other stuff. Basically we have timer-like application which lives by itself ...more >>


DevelopmentNow Blog