Valhalla Legends Forums Archive | Web Development | Web development platform

AuthorMessageTime
St0rm.iD
I'm still struggling to decide between ColdFusion, ASP.NET, and a custom Python solution.
July 14, 2004, 4:30 AM
peofeoknight
I am a .net guy, with vb.net (I know java, took ap comp sci, so I could use the c# syntax, I am just more comfortable with vb.net), I love it.
July 14, 2004, 6:25 AM
Myndfyr
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70301 date=1089779433]
I'm still struggling to decide between ColdFusion, ASP.NET, and a custom Python solution.
[/quote]

ASP.NET!! Especially if you get into the ASP.NET 2.0 now!
July 14, 2004, 8:34 AM
Grok
Wow, you only get one choice?
July 14, 2004, 10:19 AM
Tuberload
[quote author=Grok link=board=22;threadid=7696;start=0#msg70322 date=1089800379]
Wow, you only get one choice?
[/quote]

That was my problem as well. I am personally not biased towards any of those. Then again I am only a hobbyist with an opinion. :)
July 14, 2004, 6:31 PM
Adron
[quote author=Grok link=board=22;threadid=7696;start=0#msg70322 date=1089800379]
Wow, you only get one choice?
[/quote]

I picked "other" since no other choice covered everything I use...
July 14, 2004, 7:26 PM
j0k3r
[quote author=Adron link=board=22;threadid=7696;start=0#msg70354 date=1089833181]
[quote author=Grok link=board=22;threadid=7696;start=0#msg70322 date=1089800379]
Wow, you only get one choice?
[/quote]

I picked "other" since no other choice covered everything I use...
[/quote]
Perhaps you should tell him what you use.
July 14, 2004, 7:46 PM
St0rm.iD
Yeah, please reply with any combinations...
July 14, 2004, 8:13 PM
Adron
I use Perl, C++, PHP, classic ASP (vbscript), VB6, bat files / shell scripts - whatever available tool fits the task at hand.
July 14, 2004, 10:51 PM
Grok
[color=cyan]Assuming you mean server-side code ...[/color]
[color=yellow]VB6(for DLLs to use on Web), ASP, ASP.NET, XML.[/color]

[color=cyan]Client-side code...[/color]
[color=yellow]HTML, CSS, JavaScript, VB6 (DLL client components).[/color]
July 14, 2004, 11:53 PM
hismajesty
PHP :D
July 15, 2004, 3:32 AM
peofeoknight
hows php5, i heard it came finally out. I still have a hard on for asp.net of course... fully oo, language flexibility, event aware controls, nothing like it.
July 15, 2004, 6:05 AM
St0rm.iD
I want to be able to:
- Use a general site template
- Include specific pods/pagelets/modules whatever, not just a plain include file, but give it parameters, have caching, etc
- Decouple me from the graphic designer
- Use OOP
- Write an event-driven website, similar to the Mach-II system
- Database caching and decoupling

How does ASP.NET work for me?
July 15, 2004, 6:41 PM
peofeoknight
asp.net is fully oo, asp.net has event driven controls so you can infact do event driven programming, you can do includes - code behinds - use external classes - etc, and asp.net can do data cacheing (though I do not do this very extensively), you can also use a general templet with includes and generally I use css too.... I do not know what "- Decouple me from the graphic designer" means, like what you are going for. But asp.net can do everything else for you.
July 15, 2004, 8:07 PM
St0rm.iD
My graphic designer can give me a template generated by the tool of his choice, and I do minimal effort to integrate it into the site.
July 15, 2004, 11:04 PM
Myndfyr
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
I want to be able to:
- Use a general site template
[/quote]
This is why I recommend looking at ASP.NET 2.0. I get a hard-on looking at Master Pages:
MSDN Magazine June 2004: Master Pages
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
- Include specific pods/pagelets/modules whatever, not just a plain include file, but give it parameters, have caching, etc
[/quote]
Personalize the look to your user (even changing your Master Page if you hook into the right event -- the PreInit event). MSDN Magazine June 2004: Web Parts and Personalization
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
- Decouple me from the graphic designer
[/quote]
Like I told you on AIM, the designer does an extremely well job if your graphic designer gives you something of a template to start off with. Of course, if you're using Master Pages, you definitely don't need to worry about it -- your graphic designer will worry strictly about the Master Page. But, the AoA Website (that I haven't kept updated) was done in the ASP.NET 1.0 system. I got the template from a friend who made it in ImageReady and Photoshop. I just plugged in the rest.
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
- Use OOP
[/quote]
ASP.NET is all OOP. If you don't OOP it you're crazy.
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
- Write an event-driven website, similar to the Mach-II system
[/quote]
I'm not too sure about what the Mach-II system is or does, but ASP.NET is solid on event-driven programming. The page-postbacks are handled superbly, and with ASP.NET 2.0, you can post-back without making the page refresh using an ActiveX control (which is built-in to the Script Callbacks feature).
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
- Database caching and decoupling
[/quote]
As I understand it, ADO.NET is a completely decoupled system of using databases. Essentially, you load your database, do your database functions on the data in-memory, cached, and then when you're idle and it's convenient, you write a bunch of transactions back to the database at once, making for a disconnected model.
[quote author=$t0rm link=board=22;threadid=7696;start=0#msg70532 date=1089916889]
How does ASP.NET work for me?
[/quote]

Here's a summary of the features: MSDN Magazine June 2004: An Overview of the New Services, Controls, and Features in ASP.NET 2.0.

If you have the ability to use Beta in production (which I understand many sites did during the beta of ASP.NET 1.0), I would go with it. I'm downloading Visual Studio 2005 at the moment at home, and I'm going to install it on my laptop, where I do all my development (along with Longhorn PDC 2004!!!). So, if you have access to it, I would definitely check it out. It may just be worth your while. :)
July 15, 2004, 11:10 PM
Thing
[quote]Of course, if you're using Master Pages, you definitely don't need to worry about it -- your graphic designer will worry strictly about the Master Page. But, the AoA Website (that I haven't kept updated) was done in the ASP.NET 1.0 system. I got the template from a friend who made it in ImageReady and Photoshop. I just plugged in the rest.[/quote]
You might want to consider relaxing your requirements for your visitors in the future. Why would you want to optimize a site for two specific browsers and only one screen resolution with only one color depth? I don't have either of those browsers and I don't use that screen resolution or that color depth and it doesn't display correctly. Also, why would you want to have a special font that nobody has and request that they download it? Maybe you are a "Windows Only" clan?
July 16, 2004, 3:05 AM
peofeoknight
who said a thing about optimizing the site to one or two browsers and one resolution? A master template can be accessible... last time I checked my sites will work it ie6, 5.5, 5, mozilla/ns, opera, safari, and even non graphical browsers link lynx. You do not need to do a browser detect to make a page that will go cross platform, and have several pages.
Also if you design for 800 x 600 barely anyone is going to have to deal with a horizontal scroll bar so the site will still look nice, or you could always make a fluid layout that resizes to fit the window's width.
July 16, 2004, 4:29 AM
St0rm.iD
OT, is there a WYSIWYG CSS designer that renders correctly?
July 16, 2004, 4:39 AM
Thing
peofeoknight, please notice the clever way that I quoted Myndfyre and added a link to a screenshot of the AoA page that he provided. If you investigate further, you will notice that on the front page of that site, an image provides information on how the site was designed. No more crack for you. :)



[quote author=peofeoknight link=board=22;threadid=7696;start=15#msg70727 date=1089952158]
who said a thing about optimizing the site to one or two browsers and one resolution? A master template can be accessible... last time I checked my sites will work it ie6, 5.5, 5, mozilla/ns, opera, safari, and even non graphical browsers link lynx. You do not need to do a browser detect to make a page that will go cross platform, and have several pages.
Also if you design for 800 x 600 barely anyone is going to have to deal with a horizontal scroll bar so the site will still look nice, or you could always make a fluid layout that resizes to fit the window's width.
[/quote]
July 16, 2004, 4:53 AM
Myndfyr
[quote author=Thing link=board=22;threadid=7696;start=15#msg70713 date=1089947147]
[quote]Of course, if you're using Master Pages, you definitely don't need to worry about it -- your graphic designer will worry strictly about the Master Page. But, the AoA Website (that I haven't kept updated) was done in the ASP.NET 1.0 system. I got the template from a friend who made it in ImageReady and Photoshop. I just plugged in the rest.[/quote]
You might want to consider relaxing your requirements for your visitors in the future. Why would you want to optimize a site for two specific browsers and only one screen resolution with only one color depth? I don't have either of those browsers and I don't use that screen resolution or that color depth and it doesn't display correctly. Also, why would you want to have a special font that nobody has and request that they download it? Maybe you are a "Windows Only" clan?
[/quote]
Yes, we are a "Windows Only" clan. AoA isn't a programming clan, it's a gaming clan. The web site serves very effectively for us. The last time I checked my website's stats, I had only 2 visits from Netscape, and none from any other browser: strictly IE. That was one of the design decisions when choosing to render the website with an <iframe> object. People in AoA don't use Linux. I'm the only one who knows the first thing about programming in the clan.

[quote author=$t0rm link=board=22;threadid=7696;start=15#msg70728 date=1089952773]
OT, is there a WYSIWYG CSS designer that renders correctly?
[/quote]
Yes. The CSS support is quite nice. :)
July 16, 2004, 5:54 AM
peofeoknight
dreamweaver has half way decent css support, but nothing beats codeing it by hand.
July 16, 2004, 6:47 AM
Grok
[quote author=peofeoknight link=board=22;threadid=7696;start=15#msg70737 date=1089960458]
dreamweaver has half way decent css support, but nothing beats codeing it by hand.
[/quote]

Agreed. This is a subject you know well, and one of your first posts on our Web Development forum caused me to study CSS in more depth than I had previously. Having done so, I am usually unhappy with the WYSIWYG designers code output. Often now, I use the designers to create my prototype and then rewrite the code that generates the HTML/CSS/JavaScript.
July 16, 2004, 11:44 AM
KoRRuPT
I much prefer coding CSS in notepad or using Adobe GoLive.
July 16, 2004, 5:20 PM
St0rm.iD
What version of GoLive? I've used 6, and I downloaded 7 but I heard it was buggy.
July 16, 2004, 11:12 PM
peofeoknight
I do all of my hard codeing in dw becuase it has excelent asp.net support. I have not used go live though. How is Go Live compared to Home Site or Dreamweaver?
July 17, 2004, 1:06 AM
St0rm.iD
GoLive has terrible code editing support, which I believe is where Dreamweaver shines. GoLive is adept at creating CSS layouts though.
July 17, 2004, 2:45 AM
peofeoknight
so its similar to home site then? You used homesite? Its like a light dreamweaver that sucks for scripting in.
July 17, 2004, 3:48 AM
St0rm.iD
I thought homesite was the other way around...
July 17, 2004, 5:38 AM
peofeoknight
Its not that great, atleast for asp.net, and I hear its crappy to use for php too. But some people I know that use it use it because they say it is less cluttered then dreamweaver....
July 17, 2004, 5:47 AM
CrAzY
I'm very good with PHP, but since everyone is starting to use it i'll probaly swich just so I can be special. :)
August 7, 2004, 3:28 AM

Search