Hey All, In case anyone is interested, here is a link to a "Persistence Framework" project for .NET which I was talking about last night: ...
8
Jay Morrison
ja_morr
Dec 28, 2004 10:31 pm
Thanks Andrew. Interesting article. I bought "Developing Microsoft ASP.NET Server Controls and Components" a couple months ago and read through it. There are...
15
Wayne Berry
bellingham32
Jan 4, 2005 5:49 pm
Chris, Per our discussion at RoundTable this app might help with your endless loops. <3> Microsoft Links - Throttling Resources and Aiding Performance on IIS ...
16
Jay Morrison
ja_morr
Jan 4, 2005 7:47 pm
Wayne, Taking your advice at the RoundTable meeting, I built Chris a Windows Service that kills processes that consume too much CPU time and its running on the...
42
Wayne Berry
bellingham32
Feb 7, 2005 12:48 am
... From: Glen Berry [mailto:glen@...] Sent: Sunday, February 06, 2005 10:21 AM To: 'Wayne Berry' Cc: 'Railboy39; Subject: RE: .NET Programming ...
44
Andrew Robinson
nemoby
Feb 14, 2005 4:59 pm
I haven't listened to any of these yet, but Fritz Onion is a very knowledgeable guy. I enjoyed his book. There are 4 future and 11 past (on demand) web casts. ...
46
Tim Burnett
timnjanet
Feb 15, 2005 5:13 pm
hi y'all, haven't met most of you yet but glad for the start we are having on a local .NET developer's community. So Janet and I are developing a WIndows Forms...
47
Andrew Robinson
nemoby
Feb 15, 2005 7:01 pm
Tim, Yes, we need to have another meeting. I will send out something before the end of the week. On the controls issue, I have never seen anything like that...
hi all, Have you all seen that Microsoft has bundled and spiffed up all of their application blocks as the new patterns & practices Enterprise Library? It's a...
55
Tim Burnett
timnjanet
Feb 22, 2005 6:40 pm
hi Andrew, Thanks for your thoughts. We see this problem with the built in controls, user controls and actual custom controls (e.g. a new button class that...
56
Andrew Robinson
nemoby
Feb 24, 2005 2:08 pm
I watched the first part of this and found it to be pretty good. If you want to learn about xml, dom, xpath... ...
62
Bob Jones
rhj4
Mar 2, 2005 5:05 pm
Thanks to Wayne and Andy last night for the idea of setting the SQLConnecction.ConnectionTimeout property to solve the problem of very long running queries...
63
Andrew Robinson
nemoby
Mar 3, 2005 4:19 pm
The author of this was interviewed on this week's Dot Net Rocks Show. 25 and the first project he has ever worked on. Pretty amazing! Written in C#. The...
64
Andrew Robinson
nemoby
Mar 4, 2005 6:47 pm
http://www.apress.com/free/index.html A couple of good titles. -Andrew...
65
Bob Jones
rhj4
Mar 8, 2005 7:41 pm
Is there a simple way in Transact SQL to compare on Date without comparing on Time? For example, if I want all records that match a specific date, how do I...
66
Rob Schripsema
robschripsema
Mar 8, 2005 7:58 pm
Just so everybody knows: I was the one who originally asked Bob if he knew a good way to do this, and he said, "Let's put it to the .NET group". I've since...
67
Wayne Berry
bellingham32
Mar 8, 2005 8:08 pm
CONVERT(varchar(10),DateColumn,112) == CONVERT(varchar(10),DateColumn2,112) Convert to truncate strings, that just include the first 12 characters, i.e. ...
68
Wayne Berry
bellingham32
Mar 8, 2005 8:12 pm
Rob, You can also try: WHERE DATEDIFF('d',DateColum,DateColumn) <> 0 This gives the difference in days for the two columns and the diff is 0 they are the same...
69
Sydney Paige
sydney_mcgrath
Mar 8, 2005 8:14 pm
You all have just made my life worth living. Thanks for these tips, I struggle with date/time stripping all the time! -Syd ... Sydney P McGrath Email ....
70
Tim Burnett
timnjanet
Mar 8, 2005 8:53 pm
The suggestion solutions all work but I don't like too much the idea of converting to string for comparison. It seems like you could easily run into culture...
72
teri_moats
Mar 16, 2005 3:43 am
The information is helpful, so I hate to critisize it, but your function is not coded properly. The block of code in the function as follows ** IF...
73
Tim Burnett
timnjanet
Mar 16, 2005 5:15 am
Thanks Teri, you are totally right! I actually realized this *oops* in the logic of my UDF in the middle of the night a few days ago and meant to write again. ...
75
Andrew Robinson
nemoby
Mar 18, 2005 5:33 pm
I just came across these. The SQL Group is linked to off of the MS SQL 2005 page so nothing top-secrete here. ...
76
Bob Jones
rhj4
Mar 18, 2005 10:08 pm
Good links! I suspect they may not stay public for long. Bob ... From: Andrew Robinson [mailto:nemoby@...] Sent: Friday, March 18, 2005 9:34 AM To:...
77
Bob Jones
rhj4
Mar 21, 2005 1:10 am
I want to setup multiple web sites, all under a common root. Here's what I want: * <file://www.dewaardandjones.com> www.dewaardandjones.com is a site written...
78
Wayne Berry
bellingham32
Mar 21, 2005 1:31 am
Bob, The issue you have with the step-up you want it that all image and include references need to be relative, i.e. "images/test1.gif", instead of virtual ...
79
Bob Jones
rhj4
Mar 21, 2005 2:12 am
Wayne, I have the sites working already as discrete names (e.g. test1.dewaardandjones.com, test2.... etc) using host headers. What I want is to have these...
80
Andrew Robinson
nemoby
Mar 21, 2005 2:18 am
Bob, I think your approach should work ok, but remember to configure / create the application name on the virtual directory if you are running .NET...
81
Bob Jones
rhj4
Mar 21, 2005 2:32 am
Did that, but these aren't .NET - just ASP. Still doesn't work. Bob ... From: Andrew Robinson [mailto:nemoby@...] Sent: Sunday, March 20, 2005 6:18 PM ...