Everything that you ever wanted to know about Session management. http://msdn.microsoft.com/msdnmag/issues/05/09/SessionState/default.aspx...
381
Bob Jones
rhj4
Dec 6, 2005 5:35 pm
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 ...
382
Andrew Robinson
nemoby
Dec 7, 2005 6:02 pm
I wrote previously about a pattern using the coalescing operator (??) that I use to wrap ViewState: public string Title { get { return...
383
Will Asrari
wasrari
Dec 8, 2005 8:46 pm
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...
384
Andrew Robinson
nemoby
Dec 8, 2005 9:29 pm
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..."...
385
Will Asrari
wasrari
Dec 8, 2005 9:59 pm
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...
386
Andrew Robinson
nemoby
Dec 8, 2005 10:18 pm
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...
387
Will Asrari
wasrari
Dec 8, 2005 10:36 pm
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 >...
388
Andrew Robinson
nemoby
Dec 8, 2005 11:13 pm
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...
389
Will Asrari
wasrari
Dec 8, 2005 11:25 pm
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...
390
Will Asrari
wasrari
Dec 9, 2005 5:43 pm
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. -...
391
Will Asrari
wasrari
Dec 14, 2005 8:12 pm
I am trying to truncate a description to 250 characters and did so in VB.NETby doing the following: <%# Left(DataBinder.Eval(Container.DataItem,...
392
Brad Kollmyer
brad_kollmyer
Dec 14, 2005 8:57 pm
How about using String.Substring(startIndex, length): string oldString = "1234567890"; string newString = oldString.Substring(0, 3); The variable newString...
393
Andrew Robinson
nemoby
Dec 14, 2005 9:15 pm
Will, I would do something like: Text='<%# ((string)Eval("Description")).Length > 250 ? ((string)Eval ("Description")).Substring(0,250) + "..." :...
394
Will Asrari
wasrari
Dec 14, 2005 10:29 pm
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...
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...who39;s good, who isn't so good... My need is...
397
Will Asrari
wasrari
Dec 19, 2005 8:52 pm
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...
398
dot_net_dave_c
Dec 21, 2005 4:25 pm
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...
399
Will Asrari
wasrari
Dec 21, 2005 4:52 pm
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...
400
Will Asrari
wasrari
Dec 21, 2005 10:21 pm
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...
401
Andrew Robinson
nemoby
Dec 21, 2005 10:53 pm
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...
402
Bob Jones
rhj4
Dec 21, 2005 11:21 pm
Has anybody been down the road of creating SRS Reports using VS 2005? I'm stuck. Bob Jones...
403
Will Asrari
wasrari
Dec 21, 2005 11:38 pm
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 ...
404
Rob Schripsema
robschripsema
Dec 21, 2005 11:50 pm
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...
405
Will Asrari
wasrari
Dec 21, 2005 11:58 pm
Definitely. I will look into this more tomorrow and let everyone know how it goes. - will...
406
Wayne Berry
bellingham32
Dec 22, 2005 1:45 am
I have done a bunch of SRS with VS 2003. -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Bob Jones ...
407
Ellen McDermott
elleninbelli...
Dec 22, 2005 2:29 am
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...
408
Bob Jones
rhj4
Dec 22, 2005 4:11 am
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:...
409
Wayne Berry
bellingham32
Dec 22, 2005 5:36 am
What? Not even SRS for SQL 2005? -Wayne _____ From: BellinghamDotNet@yahoogroups.com [mailto:BellinghamDotNet@yahoogroups.com] On Behalf Of Bob Jones Sent:...