|
|||||||
| Home | Photo Gallery | Register | All Albums | Blogs | Forum FAQ | FlashChat | Members List | Calendar | Search | Today's Posts | Mark Forums Read | Vendor Directory |
| Notices |
| Welcome to Yotatech! |
|
|
Welcome to Yotatech, You are currently viewing our forum as a guest, which gives you limited access to view most discussions and access our other features. By joining our community, at no cost, you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is free, fast and simple, so please join our community today! |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 (permalink) | |||||
|
Senior Member
|
hey web folks - talk to me about .NET
__________________
Jackson - My Site 96 SR5 4x4 - 33" MTs, open diffs, and 3.90s - LET'S ROCK! My runner has bee traded in *sniff* on an 06 SR5 long bed d-cab Tacoma. The tacoma is nice, but... *sniff* ... I'll update my site when I'm done grieving. |
|||||
|
|
|
|
|
#2 (permalink) |
|
Registered User
|
I'd like to know this myself...
__________________
-Chris If you can't explain it simply, you don't understand it well enough. Click here to search! My Website |
|
|
|
|
|
#3 (permalink) |
|
Contributing Member
|
i ran into this in my current job actually
we decided not to use it, but to use sharepoint for that project, though my understanding is one doesnt necessarily relate to the other. my understanding of .net is that its basically a web based infrastructure (portal if that helps you) to deliver web services programs via xml. i dont know how it all works, but my grasp of it is that you can centralize all info and give access to programs via the web... sort of like a vpn i think? i hope someone with experience chimes in. |
|
|
|
|
|
#4 (permalink) |
|
Contributing Member
Join Date: Aug 2002
Location: Sacramento, CA
Posts: 882
|
Wow. The answer to that question fills many, many books.
In brief, .NET is microsoft's current application development infrastructure. It covers both Windows and Web programming (among others). For web developers, it provides the same class of tools that windows (etc) programmers have had for years (better actually) so you can develop much more capable things without it being a quivering mass of spaghetti. It has lots of advantages over its predecessors, such as being easier to maintain, reuse stuff in many pages, automate a lot of the annoying stuff like validations, etc. It's damn cool because you get an environment where you can multiple languages (C variants, VB, and a few others) that actually play nice together, application deployment is a dream, and the built-in ways to do things like manipulate databases are actually usable in the real world (unlike some of MS's predecessor products). It also has a fantastic amount of support for all things web, including good page programming tools, excellent web services development, and similiar functionality. It is popular because a) it's the current microsoft thing, and b) it really IS that much better than it's predecessor. It's only major disadvantages are that it's microsoft, and therefore really only runs on microsoft platforms, and that it's microsoft, so it's 137 times the size of it's predecessors. ![]() Disclaimer: I don't work for Microsoft. I've been programming for 20-odd years, and this is just what I'm using today...
__________________
Scott '97 4runner LTD. SC, URD, Tundra/OME (SS #7), TJM-15 bumper, BruceTS rear bumper, trail carnage skid plates, stubbs sliders, cobra 18wxstii cb, 99 headlights, upgraded headlight wiring, maglite mod, aux fuse boxes, Airaid MIT, Hayden tranny cooler, deckplate, parts for entirely too many mods lying around... |
|
|
|
|
|
#5 (permalink) |
|
Registered User
Join Date: Dec 2004
Location: Castle Rock, CO
Posts: 849
|
.Net rocks.
I've been using it for a couple years now and it is sooooooooo much better than ASP. We are just starting to look into upgrading ASP.NET 2.0 (which hopefully isn't too much of a headache)
__________________
97 4Runner SR5 Blue - 135k miles, E-Locker, Armorology front/rear bumpers & sliders, BudBuilt skidplate+belly, MTR 285/75/16s, 2" Tundra/OME Lift, 1" 4Crawler Bodylift, 1" diff drop, Black Aluminum Wheels, Cobra CB 04 Land Cruiser Grey - 90k miles, OME Lift, Slee Sliders, 35" Toyo Muds |
|
|
|
|
|
#6 (permalink) |
|
Senior Member
|
is it the latest and greatest because it's Microsoft, or is it really that good? I've been pretty happy with MySQL and PHP, but I get the impression that .Net is more than a coding language and a database that play nicely together.
__________________
Jackson - My Site 96 SR5 4x4 - 33" MTs, open diffs, and 3.90s - LET'S ROCK! My runner has bee traded in *sniff* on an 06 SR5 long bed d-cab Tacoma. The tacoma is nice, but... *sniff* ... I'll update my site when I'm done grieving. |
|
|
|
|
|
#7 (permalink) |
|
Registered User
Join Date: Dec 2004
Location: Castle Rock, CO
Posts: 849
|
I haven't used MySQL and PHP, but asp.net just has a lot of nice controls and features that speed up development. It finally separates the biz logic from the presentation layer by using code-behind files.
The interface is an HTML file (.aspx) and the code-behind files are C# (.cs) or VB.NET (.vb) that are compiled into dlls. This makes it easy for a front end graphic designer to polish up the UI without interfering with the backend developer. That datagrid is prob one of the most useful customizable controls. Create a dataset, bind it to a datagrid and you instantly have a listing with sortable columns, paging, alternate color rows, etc, etc. If you want one of the columns to be a data entry textbox, just overload that column with your own template. You can even create your own custom controls and dynamically inject them into the page at runtime. Plus creating web services are a piece of cake.
__________________
97 4Runner SR5 Blue - 135k miles, E-Locker, Armorology front/rear bumpers & sliders, BudBuilt skidplate+belly, MTR 285/75/16s, 2" Tundra/OME Lift, 1" 4Crawler Bodylift, 1" diff drop, Black Aluminum Wheels, Cobra CB 04 Land Cruiser Grey - 90k miles, OME Lift, Slee Sliders, 35" Toyo Muds |
|
|
|
|
|
#8 (permalink) |
|
Contributing Member
Join Date: Aug 2002
Location: Sacramento, CA
Posts: 882
|
Compared to their previous offerings (ASP for web stuff and Visual Studio 6 for windows programming), it's really that good.
Compared to php/mysql, I can't really say. I don't have the experience to defend any comments there. The minimal web scripting I've done outside of MS products is using a text editor to write bad perl scripts, and that just sucked. The thing I really like is that the development tools are really top notch to use, everything is nicely separated out between presentation and implementation, the tools are super helpful in helping you remember all those cool properties you forgot about, and the ability to make a very responsive web site with minimal effort is pretty sweet. I'm sure you could say the same thing about Dreamweaver or any of a host of other top end products, but I don't have the experience to prove it. .NET according to Microsoft is pretty much "everything". It's the underpinnings of pretty much all of their current or incoming technologies. I'm not sure this is really helpful. I think you need to hear from someone who has used other tools and can compare.
__________________
Scott '97 4runner LTD. SC, URD, Tundra/OME (SS #7), TJM-15 bumper, BruceTS rear bumper, trail carnage skid plates, stubbs sliders, cobra 18wxstii cb, 99 headlights, upgraded headlight wiring, maglite mod, aux fuse boxes, Airaid MIT, Hayden tranny cooler, deckplate, parts for entirely too many mods lying around... |
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Anyone know how to make a net? | hmmwv15 | Off Topic Talk | 4 | 03-16-2007 02:59 PM |
| Hey Arkansas folks! New ORV Park? | Ranski | 95.5-2004 Tacomas & 96-2002 4Runners | 4 | 11-19-2004 12:17 PM |
| hey web guys... | jacksonpt | Off Topic Talk | 8 | 03-26-2004 10:41 AM |
| hey let's talk some politics | calrockx | Off Topic Talk | 18 | 01-29-2004 07:18 AM |
| i-Net+ | metal22lica | Off Topic Talk | 2 | 02-21-2003 07:31 PM |