Jason Tucker's Blog

not at all creative...

April 2003 - Posts

Internet Information Services 6.0 Migration Tool

Cruisin' around the Windows 2003 site and found a few tools for moving to the new platform. This is one of the cooler ones I saw and should help me with a few sites I've got running. Here is the whole list.

Posted: Apr 28 2003, 01:28 PM by jtucker | with no comments
Filed under:
Why would you want to?

Roy writes:

This Page has a very complete guide on tweaking Windows Server 2003 into excactly what you want it to be.

Very nice! Thanks to  Marc LaFleur   for this link.

but the best part of this article was the link to install Plus! for WinXP on Windows Server 2003.

CoolMon 1.0 Release Candidate 2

This thing is pretty cool. It's got plugin support too, so you can create little extensions to it. It says that it only supports XP, but I haven't got around to testing it on Windows Server 2003. This looks like it would be pretty cool to put on a server.

[.NET Weblogs ]

Yeah Coolmon is good but IMHO Samurize is much better.

Attack of the Stupid Product Names.

Borland has detailed the new name for Sidewinder, C# Builder for the Microsoft .Net Framework. uggh. I'll still call it Sidewinder since that is a cooler name.  

The one and only post I'll make about the war..

A buddy sent this my way... < Click Here >

That's it.

Posted: Apr 11 2003, 03:41 PM by jtucker | with no comments
Filed under:
myRSS..

Anyone seen this site myRSS.Com? It looks like it's of the same vein as newsisfree.com, taking content from websites and then creating RSS Feeds.

From thier site:
 myRSS enables anyone to build custom RSS channels for virtually any news site they desire. myRSS requires no programming experience, is completely automated and all channels are available for free.

Posted: Apr 10 2003, 03:19 PM by jtucker | with no comments
Filed under:
You know I'd like to give CF.Net development a try...

But I don't have a damn copy of VS.Net 2003. And along with that I can't experiment with the Office stuff either since that requires VS.Net 2003 too. ARRGHH!!

Okay.. I'm better now.

Posted: Apr 09 2003, 04:36 PM by jtucker | with 1 comment(s)
Filed under:
DataGrids with CheckBoxes...

From James:

This would be a little bit different when working with checkboxes, you would need to loop through the items and see if they are selected, but you get the idea.

- James

And let me state that it was not FUN and I'm sure that there is a better way then what I did below. I have a special circumstance, where the client wanted a new window to open when they clicked on the submit button. So I decided to loop through the grid get the ones that were checked and store them in Session along with the final count of how many were checked. These would later be re-read in the resulting page. I really REALLY hate what I did here and plan on going back to try and find a better way.. so if anyone has any hints :)

Private Sub btnAddWatch_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles btnAddWatch.Click
        Dim OrthoG As DataGrid
        Dim DGitem As DataGridItem
        Dim Counter As Integer

        Try
            OrthoG = CType(Page.FindControl("DemoGrid"), DataGrid)
        Catch
            OrthoG = Nothing
        End Try

        If Not OrthoG Is Nothing Then
            Counter = 0
            For Each DGitem In OrthoG.Items
                If DGitem.ItemType = ListItemType.Item Or DGitem.ItemType = ListItemType.AlternatingItem Then
                    Dim ck = CType(DGitem.FindControl("ProductChk"), CheckBox)
                    If Not ck Is Nothing Then
                        If ck.Checked Then
                            Session("Ortho" + Counter.ToString()) = DGitem.Cells(1).Text
                            Counter = Counter + 1
                        End If
                    End If
                End If
            Next
            Session("OrthoCount") = Counter
        End If

        Page.RegisterStartupScript("os", "<script language='javascript'>window.open('addtowatchlist.aspx', '_blank', '');</script>")

End Sub

Scary..
It could just be me, but does anyone get the sneaking suspicion that sites may start putting ads in thier feeds? I was talking to a friend about this today and I don't think it would be impossible. What can I say, it's been a weird morning..
Posted: Apr 09 2003, 10:18 AM by jtucker | with 10 comment(s)
Filed under:
OT: Funny vid..
I know that this is waaaayyy off topic, but it's just too funny not to share. Click Here. **BE WARNED** Not office material.
Posted: Apr 08 2003, 02:30 PM by jtucker | with 1 comment(s)
Filed under:
More Posts Next page »