Matt, Take a look at you inner exception: objError.InnerException (or something close to that). Take a look at objError.InnerException.Message (or something...
Matt, The Fields list in your Response.Write of the strSQL has (at the end) Waiver, Tshirt, Size, dtDate -- and the order of the VALUES list seems to match --...
Rob & Andrew, Thanks guys, I actually figured out how to get around it last night. Still not sure what caused it. I realized after I posted it (late night not...
Recently I was surfing on a website of what appears to be a sizable company. I received an error on one of their search pages and got to view a copy of their...
This came over a list server that I am on for old woodworking tools. Anyone need a tax break? -Wayne ... From: @yahoogroups.com [mailto: @yahoogroups.com] On...
Well, the site appears to be down now. Whoops! Bob Jones ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of...
So maybe I am drawing a complete mind blank, actually I know I am. I have a page that needs to display a list of events and details about them. There are...
Would it work to do this within your Stored Procedure? It might make it easier to manipulate if you want to make minor changes later... -Syd _____ From:...
I think you're probably looking for the *ItemDataBound *event that is raised every time an item is bound to the Data List. You can then manipulate the data set...
Hello, I've been working on completing my web certification at Western, and was told this is a great place for information and help. Nice to meet everyone! I'm...
Welcome to the group. There are a number of ways of exporting data to Excel and I am not sure what method you are using. Could you post a bit of code so that ...
*Visual Studio.NET instructions:* http://support.microsoft.com/default.aspx?scid=kb;en-us;317719 *This should work fine if the fields are the same:* ...
I'm able to export to excel fine using code similar to what Will posted just in VB. The problem I'm having was once the datagrid is exported to excel each...
Sounds like you are looking for the ability to produce merged cells. I haven't tried this from a web server, but if you code the following html file and then...
One more note: you should also be able to use a single <ASP:TABLE> control on your web form. Populate it and then render it in the same way that you are...
Thanks Josh, that is exactly what I was looking for. Problem I am having now though is how do I utilize that event, bummer about not really knowing how to use...
Will, onItemBound was just the name of a subroutine, ItemDataBound is the event that triggers that subroutine. With Josh's advice I was able to at least figure...
Josh, Great idea but unfortunately I do not believe I can add placeholders within a datalist. I added a placeholder to the datalist and I got an error stating...
How about calling a protected method from within the databinding contruct on your page. Text='<%# FormatText(DataBinder.Eval(Container, "DataItem.Field1"), ...
I am not sure exactly what you are trying to do, but you can add controls to the item template for you Datalist or datagrid then turn their visibility on or...
A few days ago, I completed a test conversion of the Haggen web site using VS2005. Other than a few warnings, all seems just fine. I did not have to hand tweak...
On a less technical note..... I've been asked to forward the following invitation to the DotNet group on behalf of the local TAG/WSA group. This sounds like it...
Pretty sure that is my solution, thanks! For now we decided to just opt out of dealing with that because of our timeline for other projects but will come back...
So one part of this application I'm developing is supposed to send an e-mail from User A to User B. I received an error using the following: Dim mailObj As new...
Will, A couple of things here. Not related to your error message, but you are requesting HTML formatted email but not sending valid HTML in your body. This...