Search the web
Sign In
New User? Sign Up
BellinghamDotNet · The Bellingham .NET Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 497 - 526 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
497
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...
Will Asrari
wasrari
Online Now Send Email
Jul 3, 2006
6:40 pm
498
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...
Will Asrari
wasrari
Online Now Send Email
Jul 4, 2006
12:13 am
499
Nevermind. Good to go! ... -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
Will Asrari
wasrari
Online Now Send Email
Jul 4, 2006
12:59 am
500
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...
Will Asrari
wasrari
Online Now Send Email
Jul 5, 2006
10:09 pm
501
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...
Will Asrari
wasrari
Online Now Send Email
Jul 11, 2006
6:51 pm
502
<add key="MyServer" value="" /> WORKS! -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and...
Will Asrari
wasrari
Online Now Send Email
Jul 11, 2006
7:11 pm
503
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...
Andrew Robinson
nemoby
Offline Send Email
Jul 11, 2006
8:58 pm
504
string ThisMachine = Server.MachineName.ToString().ToUpper(); Bob _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On...
Bob Jones
rhj4
Offline Send Email
Jul 12, 2006
12:33 am
505
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....
smoothj_52
Offline Send Email
Jul 17, 2006
3:47 pm
506
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...
Chris Sandvig
c_sandvig
Offline Send Email
Jul 17, 2006
7:17 pm
507
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...
Andrew Robinson
nemoby
Offline Send Email
Jul 17, 2006
8:35 pm
508
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...
Wayne Berry
bellingham32
Offline Send Email
Jul 17, 2006
8:47 pm
509
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...
Will Asrari
wasrari
Online Now Send Email
Jul 17, 2006
10:10 pm
510
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...
dot_net_dave_c
Offline Send Email
Jul 18, 2006
4:16 pm
511
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...
Will Asrari
wasrari
Online Now Send Email
Jul 21, 2006
5:16 am
512
This is Ill-advised since dynamic controls will not survice (Their ViewState Is Not Saved) on a PostBack. -Wayne _____ From: BellinghamDotNet@yahoogroups.com ...
Wayne Berry
bellingham32
Offline Send Email
Jul 21, 2006
5:19 am
513
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 Asrari
wasrari
Online Now Send Email
Jul 21, 2006
2:18 pm
514
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...
Andrew Robinson
nemoby
Offline Send Email
Jul 21, 2006
3:37 pm
515
I missed the original problem post, can you report what you are attempting. -Wayne _____ From: BellinghamDotNet@yahoogroups.com ...
Wayne Berry
bellingham32
Offline Send Email
Jul 21, 2006
4:26 pm
516 Will Asrari
wasrari
Online Now Send Email
Jul 21, 2006
4:56 pm
517
I would do a DataRepeater with Controls that are static (i.e. in the .aspx) page. -Wayne _____ From: BellinghamDotNet@yahoogroups.com ...
Wayne Berry
bellingham32
Offline Send Email
Jul 21, 2006
9:33 pm
518
Good solution! ... the .aspx) ... Controls ... a starting ... page ... row) to ... best method ... and ... create 50 ... then "Update" 50 ... these ... of a ...
Andrew Robinson
nemoby
Offline Send Email
Jul 21, 2006
9:52 pm
519
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...
Andrew Robinson
nemoby
Offline Send Email
Jul 25, 2006
9:56 pm
520
Sick, Andy. Sick... Bob ... From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Andrew Robinson Sent: Tuesday, July...
Bob Jones
rhj4
Offline Send Email
Jul 26, 2006
2:42 am
521
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...
Wayne Berry
bellingham32
Offline Send Email
Jul 26, 2006
4:27 am
522
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:...
Wayne Berry
bellingham32
Offline Send Email
Jul 26, 2006
2:47 pm
523
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 Asrari
wasrari
Online Now Send Email
Jul 30, 2006
11:04 pm
524
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...
Andrew Robinson
nemoby
Offline Send Email
Jul 30, 2006
11:24 pm
525
Will, Maybe consider making a C# Windows App to import your data. Does it really need to happen over the web? -Wayne _____ From:...
Wayne Berry
bellingham32
Offline Send Email
Jul 31, 2006
2:06 am
526
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 ...
Will Asrari
wasrari
Online Now Send Email
Jul 31, 2006
2:59 am
Messages 497 - 526 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help