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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 380 - 409 of 1074   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
380
Everything that you ever wanted to know about Session management. http://msdn.microsoft.com/msdnmag/issues/05/09/SessionState/default.aspx...
Andrew Robinson
nemoby
Offline Send Email
Dec 6, 2005
4:26 pm
381
Well, it's 9:30 and all I have done so far today is read blogs. Learned lots. Now it's time to get to work. B _____ From: BellinghamDotNet@yahoogroups.com ...
Bob Jones
rhj4
Offline Send Email
Dec 6, 2005
5:35 pm
382
I wrote previously about a pattern using the coalescing operator (??) that I use to wrap ViewState: public string Title { get { return...
Andrew Robinson
nemoby
Offline Send Email
Dec 7, 2005
6:02 pm
383
What is the secret to publishing a website with VS 2005? With 2003 all I had to do was build the solution, move the .aspx pages and the assembly files to the...
Will Asrari
wasrari
Online Now Send Email
Dec 8, 2005
8:46 pm
384
Will, You can usually just copy all the files in your web site including your bin directory and the app_ directories. 1. You can use the "Copy Website..."...
Andrew Robinson
nemoby
Offline Send Email
Dec 8, 2005
9:29 pm
385
I'm still getting the error below. What I don't understand is that I installed .NET Framework 2.0 yesterday on this server and didn't see the option to change...
Will Asrari
wasrari
Online Now Send Email
Dec 8, 2005
9:59 pm
386
It is odd that you don't have the ASP.NET tab within IIS. That makes me think that something is wrong with your framework install. From the command line, you...
Andrew Robinson
nemoby
Offline Send Email
Dec 8, 2005
10:18 pm
387
I setup the directory as an application through the IIS wizard. I do have the tab for ASP.NET but nothing is loaded in the drop down list. In aspnet_client >...
Will Asrari
wasrari
Online Now Send Email
Dec 8, 2005
10:36 pm
388
Is the virtual directory set up as an application? properties / virtual directory (tab) / Applicatoin Name: If that is dimmed out, click on the button that...
Andrew Robinson
nemoby
Offline Send Email
Dec 8, 2005
11:13 pm
389
There was an application name already and I am still not able to choose a .NET version. I even tried to recreate the application and still had no luck. Under...
Will Asrari
wasrari
Online Now Send Email
Dec 8, 2005
11:25 pm
390
I finally got this to work. I had the sys admin reset iis this morning and the dropdownlist of version numbers repopulated. What a pain. Thanks again Andrew. -...
Will Asrari
wasrari
Online Now Send Email
Dec 9, 2005
5:43 pm
391
I am trying to truncate a description to 250 characters and did so in VB.NETby doing the following: <%# Left(DataBinder.Eval(Container.DataItem,...
Will Asrari
wasrari
Online Now Send Email
Dec 14, 2005
8:12 pm
392
How about using String.Substring(startIndex, length): string oldString = "1234567890"; string newString = oldString.Substring(0, 3); The variable newString...
Brad Kollmyer
brad_kollmyer
Offline Send Email
Dec 14, 2005
8:57 pm
393
Will, I would do something like: Text='<%# ((string)Eval("Description")).Length > 250 ? ((string)Eval ("Description")).Substring(0,250) + "..." :...
Andrew Robinson
nemoby
Offline Send Email
Dec 14, 2005
9:15 pm
394
Thanks to both of you. - will ... -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the...
Will Asrari
wasrari
Online Now Send Email
Dec 14, 2005
10:29 pm
395
http://msdn.microsoft.com/coding4fun/holiday/giftguide/...
Andrew Robinson
nemoby
Offline Send Email
Dec 17, 2005
4:16 am
396
I'm looking for an ASP.NET host. I've found many, many on the internet, but haven't fount a way to rate them...who's good, who isn't so good... My need is...
dot_net_dave_c
Offline Send Email
Dec 19, 2005
8:40 pm
397
I have been using Brinkster for years without any problems. Very reasonably priced as well. http://www.brinkster.com -- Programming today is a race between...
Will Asrari
wasrari
Online Now Send Email
Dec 19, 2005
8:52 pm
398
Thanks Will. I turned them up in my search, but from their website could not tell if they offer SQL-Server. I also found one called "GoDaddy.com" that looked...
dot_net_dave_c
Offline Send Email
Dec 21, 2005
4:25 pm
399
They offer SQL server in with the Developer Account. I think it's like $17.95 a month. - Will ... -- Programming today is a race between software engineers...
Will Asrari
wasrari
Online Now Send Email
Dec 21, 2005
4:52 pm
400
I am working on an application that will connect to a FoxPro database and pulling data for a Human Resources application. I would like to, if possible, create...
Will Asrari
wasrari
Online Now Send Email
Dec 21, 2005
10:21 pm
401
Will, If I understand you, you want to execute a query in SQL that will in turn go out and execute a query against FoxPro? Not a very clean way of doing...
Andrew Robinson
nemoby
Offline Send Email
Dec 21, 2005
10:53 pm
402
Has anybody been down the road of creating SRS Reports using VS 2005? I'm stuck. Bob Jones...
Bob Jones
rhj4
Offline Send Email
Dec 21, 2005
11:21 pm
403
I have 2 tables in FoxPro: A & B which have a relation. I want to create a view in SQL server containing the data from these 2 tables; let's call it ...
Will Asrari
wasrari
Online Now Send Email
Dec 21, 2005
11:38 pm
404
Will, I'd say this is where you create a DTS package that will import the data from FoxPro (via ODBC) into one or two native SQL tables and run your queries...
Rob Schripsema
robschripsema
Offline Send Email
Dec 21, 2005
11:50 pm
405
Definitely. I will look into this more tomorrow and let everyone know how it goes. - will...
Will Asrari
wasrari
Online Now Send Email
Dec 21, 2005
11:58 pm
406
I have done a bunch of SRS with VS 2003. -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Bob Jones ...
Wayne Berry
bellingham32
Offline Send Email
Dec 22, 2005
1:45 am
407
I use CrystalTech (www.crystaltech.com) They have been around for a while, they are now owned by someone else, but retain the name. They have a developer plan...
Ellen McDermott
elleninbelli...
Offline Send Email
Dec 22, 2005
2:29 am
408
So has Rob - I have only done a little. The problem is doing SRS from within VS 2005. Turns out you can't. Bob ... From: Wayne Berry To:...
Bob Jones
rhj4
Offline Send Email
Dec 22, 2005
4:11 am
409
What? Not even SRS for SQL 2005? -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Bob Jones Sent:...
Wayne Berry
bellingham32
Offline Send Email
Dec 22, 2005
5:36 am
Messages 380 - 409 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