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 2005 > threads for saturday april 2

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

Access COM+ Object from Classic ASP
Posted by Steve Lutz at 4/2/2005 11:59:48 PM
Hi All, I wrote a COM+ object in C#, and I can use it from other .NET Applications. I need to be able to access it from Classic ASP. First, Can I do that? I tried using Server.CreateObject("myobject.myclass") but that doesn't work. Yes, it's registered (regasm.exe), again, other .NET applicat...more >>

datagrid in a asp.net page
Posted by JD at 4/2/2005 11:17:24 PM
Hello Everyone, I am writing a asp.net page using vb.net with a datagrid control. I am trying to detect when a row is clicked on in the grid. And I am not sure how to do this, if anyone has any ideas on this I would really appreciate your help. Thanks. -- J. D ...more >>

Data Bind for textbox
Posted by david at 4/2/2005 9:19:05 PM
I have bind a dataset, DentistDataSet1, to TextBox, txtLastName, by set the textbox property (databindings--> simple binding--> ... -->LastName) and also bind it to a dropdown list, DropdownList1 with datasource (DentistDataSet1), DataMember (Dentists), and DataTextField (DentistID), and AutoP...more >>

Easy question
Posted by Brad at 4/2/2005 8:31:02 PM
I am very very new to ASP .Net developement and am all self-taught. I have been programming Windows vb forms for a while however. I know this is a stupid question. I have my home page and some other pages. But once a user logs in and the password validated, how do I redirect to another pag...more >>

Getting access to a page's entire html source
Posted by msnews.microsoft.com at 4/2/2005 8:02:06 PM
Hi, Is it possible to gain access to the actual html stream send to the client? I am thinking of something like: private void Page_Load(object sender, System.EventArgs e) { if ( !Page.IsPostBack ) { // do stuff Bind_Grid() Get_Html_Stream() } } ...more >>

Window.setInterval not working from asp.net
Posted by barry at 4/2/2005 7:11:06 PM
If The script below is exeuted from the onload=3D"startit()" in the body = tag everything works fine but when I remove the onload and try to = execute by using the attributes.add from within the Page_Load the = window.setInterval will not execute - there is no message but the timer = never takes...more >>

Formatting Parent-Child data in table
Posted by Chris White at 4/2/2005 6:26:09 PM
Kinda new to .NET. I used to build output like this manually in ASP and I can't find any examples of creating this with Repeater, DataList, DataGrid etc to make it any cleaner in .NET select a.au_lname, a.au_fname, t.title, t.price, t.pubdate from authors a inner join titleauthor ta on a...more >>

dynamic ASP 2.0 Pages
Posted by Jörn_von_Holten at 4/2/2005 5:27:35 PM
Hi, my 3-tier system has a separate bizz-logic and storage service (MVC paradigm as usual) and the bizz-logic layer shall drive the logic (workflow) of the ASP site. My "idea" is (alike Xaml but I am not allowed to use Xaml now) to store meta info defining the design of the dialogs. These...more >>



Permission script
Posted by Aaron at 4/2/2005 4:11:00 PM
I'm going to deploy an web app on a client's server. It requires write permission for the ASP.NET account for one of the folders. c:/inetpub/wwwroot/mysite/logs Is there a script that can automatically do that? in VBS? or BAT? or NET? Assume my client has admin permission on the server. Th...more >>

what is the difference between datagrid and datalist
Posted by Raghuram at 4/2/2005 3:22:02 PM
difference between datagrid and datalist ...more >>

Creating an ASP.NET Ver1.1 app on a WinXP box.
Posted by Phil Jones at 4/2/2005 2:47:31 PM
I'm attempting to create an ASP.NET (Framework Ver1.1) web-app on my "LocalMachine" that is running Windows XP. I get a dialogue saying that the server needs to be upgraded to Ver1.1. Other than installing the Framework 1.1, what do I need to do to upgrade IIS. Thanks everyone. === Ph...more >>

Datalist validations. . .
Posted by rvsraghu at 4/2/2005 1:16:12 PM
I have a datalist control in my page and there is a Textbox to enter the data like username or location. (Basically used to enter a single data at a time.) now i want to validate the control in such a way that, if the user didnt enter any data in the text box, user should be warned with the er...more >>

Page / Web Control Event order?
Posted by Tome73 at 4/2/2005 12:35:02 PM
Could someone give me a comprehensive order of events as they pertain to web controls within a page. The page events are: Page_Init Page_Load Page_PreRender Page_Unload Page_Disposed So where would the Init and Load events of web controls fit into the page events. Would it be? Pa...more >>

Installing VS - have existing developer version
Posted by Sandy at 4/2/2005 11:29:02 AM
Hello - I have been using the 60-day trial software for quite some time (currently have Version 7.1.3088 installed) and have recently purchased Visual Studio ..net Special Edition Version 2003. I have a few practice web apps I would like to keep. Do I uninstall the 60-day trial and inst...more >>

showing changing time in a label
Posted by barry at 4/2/2005 10:48:42 AM
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim curtime As Date Do Until Date.Now >= some future date time curtime = Date.Now Label1.Text = curtime.T...more >>

pop ups
Posted by mareal at 4/2/2005 10:19:03 AM
Is there any way to programmatically open pop ups with SP2? My ASP.NET site uses JavaScript to open new browser windows and they are being shut down automatically......more >>

weird sql data reader thing...
Posted by dhnriverside at 4/2/2005 8:37:04 AM
Hiya Right, I'm trying to make an A-Z page for my site. It starts on A, with a row of 26 letters along the top that you can click on. Fine so far. Now I've come to pull the data in from the SQL database, and something very bizarre is happening. Heres the statement... SELECT * FROM A...more >>

Updating DataGrid without PostBack/Refresh
Posted by ashfaq Gul via DotNetMonster.com at 4/2/2005 8:35:26 AM
Please help me.... i want to update record in datagrid without postback ....and the main thing that the confirmation of record updation should be from server not client ...because overwritting problem may occur if more than one user are updating the same record.... Please help.. -- Messag...more >>

Is the RequiredFieldValidator a reliable control if supported with sensible form level coding?
Posted by Hazz at 4/2/2005 7:23:38 AM
I needed to provide client side validation for a web forms text box, radio button list, and drop down list. I asked two developers I work with what they thought I should do. One said Javascript, the other the Validation Controls. I chose the RequiredFieldValidator although I had done consider...more >>

@assembly directive questions
Posted by Steve Richter at 4/2/2005 6:25:42 AM
I am attempting to use the IBM DB2Connection class in my .aspx web page. Using Visual Web Developer 2005 express, I cant figure out how to add a reference to a project. heck, I cant figure out how to open a project! so I am trying to use the @assembly directive to point directly to the a...more >>

ERROR: 'HTTP/1.0 503 Service Unavailable'
Posted by Tomas Kepic at 4/2/2005 3:47:02 AM
Hi, i'm trying to create my first ASP.NET project ( HelloASPWorld project) but an error occured when I put OK button in NewProject. ERROR: "The Web server reported the following error when attempting to create or open the Web project located at the following URL: 'https://localhost/HelloA...more >>


DevelopmentNow Blog