I am working on a SQL RS project (2nd one ever) and am having a bit of a problem with URL length. The report I am working with sends 18 parameters to the...
Nevermind, realized the path in the configuration needed to be: /report_directory/report_name instead of /report_directory/ Also, any input on CSV output with...
Nevermind. Good to go! ... -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
I'm slowly grasping this whole SQL Reporting Services business but am still having problems with permissions-related issues. I am adding a web reference to...
I've recently created an application to be installed at 17 different locations around the globe. Each location utilizes a different server name and I want to...
<add key="MyServer" value="" /> WORKS! -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and...
Will, Pretty sure that (Local) is expanded by ADO.NET. "localhost" is an entry in your host file that points back to 127.0.0.1 which is the ip loopback...
Hello, I'm working on an application with ASP.Net 1.1 and have been trying to redirect the user to a page not located on the server and post information to it....
I'm don't quite understand the purpose of the second form, but you could include some JavaScript in the page to post it automatically. Chris <script...
Rather than using a Post, how about using a Get and then simply pull your values from the query string. -Andrew ... trying ... has ... than ... simulate ... is...
Your SERVER can't tell the client browser to POST information. There is no POST redirect. So you either need to do a GET redirect (Response.Redirect) or call...
Let's say I have a form for account activation. The user selects a starting account number and the number of accounts (x) to create. The next page displays x...
More info… We're using a hosted order page from a company called CyberSource in order to add online payment functionality to our existing asp.net online...
After much reading and brainstorming I figured out how to go about doing this on my own if anyone else is interested. Find the end </tr> where I wanted...
This is Ill-advised since dynamic controls will not survice (Their ViewState Is Not Saved) on a PostBack. -Wayne _____ From: BellinghamDotNet@yahoogroups.com ...
Wayne, What other options do I have? - Will -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs,...
Will, I think that Wayne has some valid points. A bigger issue with dynamic controls related to viewstate is really understanding the page life cycle. I can't...
Good solution! ... the .aspx) ... Controls ... a starting ... page ... row) to ... best method ... and ... create 50 ... then "Update" 50 ... these ... of a ...
1. If I were a generic collection, I'd be strongly typed for you. 2. You must be the latest version, because I've been checking you out. 3. I have a small...
Sick, Andy. Sick... Bob ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Andrew Robinson Sent: Tuesday, July...
Andy, Very nice, you are a creative guy, however I was inspired to add my own: 7) You're a beautiful piece of code, did you inherit those properties? 8) I...
Just one more: 12) I am only a partial class without you. -Wayne _____ From: Wayne Berry [mailto:wayne@...] Sent: Tuesday, July 25, 2006 9:27 PM To:...
In my code I have created a Process for opening up a command line executable using System.Diagnostics.Process that imports a csv full of Generic Authorization...
Will, I don't know if this is directly related or not, but under .NET, you are pretty much prohibited from running an executable on a machine other than your...
Wayne, It has to happen over the web. The company I am creating this for was very specific when it came to the requirements. I will just have to tell them ...