 |
|
|
07-22-2008, 10:49 AM
|
|
#31
|
 |
|
Member
Join Date: Nov 2002
Location: Kuala Lumpur, Malaysia (Boleh!)
Posts: 1,943
|
Over here in Malaysia, I tried one of the most popular job sites, Jobstreet
".NET" keyword gets 492 results,
"asp" keyword gets 338 results,
"PHP" keyword gets 203 results.
__________________
My Personal Home Page - www.findingsteve.net
... with God all things are possible (Matthew 19: 26)
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-22-2008, 12:18 PM
|
|
#32
|
 |
|
Super Deity (Level 18)
Join Date: Sep 2004
Location: Finland
Posts: 3,410
|
Quote:
|
Vege, watch a pro .NET developer whip up a web-based database in a matter of minutes and then you'll understand.
|
web-based database?
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-23-2008, 12:38 PM
|
|
#33
|
 |
|
Can't say much here
Join Date: May 2004
Posts: 2,832
|
Yes a webbased user interface to the db.
and have you looked at tools like codesmithtools.com or others that have an awesome functionality?
Here is an example of building an application that has 1 table for customers.
drag datagrid from UI Toolbox, Drag SqlDataSource drop both on the page, click on sqldatasource on selectcommand type select * from tblCustomers.
and save and run the page.
__________________
ASP.net nice bits
Code Smith rocking tool for Code Generation in any language (Written in .net)
Red Gate SQL tools for DBA
Blog Personal blog
.afterburn
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-23-2008, 01:28 PM
|
|
#34
|
 |
|
Blonde Bimbo
Join Date: Jul 2004
Posts: 2,242
|
asp.net is cool and all that ( ***** of a learning curve though) ..... but drag 'n' drop coding? .... next you'll tell me that you use front page as well
¥
__________________
I may have opened the door, but you entered of your own free will
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-23-2008, 01:47 PM
|
|
#35
|
 |
|
Can't say much here
Join Date: May 2004
Posts: 2,832
|
I bet that you use dreamweaver. No i use VS.net 2008 Pro.
All that functionality is included in all versions of VS.net
Check out VS.net Express asp.net
VS.net C# Express
(Pro includes them in 1 GUI).
Most of my UI Coding is done by either scripting it or by hand, i was just showing you how easy.
Have you used MasterPages?
Dynamically added controls to pages?
Implemented custom User Management?
A ton of code unless you know how to use the tools you have...
OOP BasePages, custom strongly typed datasets; Cryptography, Threading, XML, IO, Sockets?
Lots of tools right at finger tips!!
__________________
ASP.net nice bits
Code Smith rocking tool for Code Generation in any language (Written in .net)
Red Gate SQL tools for DBA
Blog Personal blog
.afterburn
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-24-2008, 11:21 AM
|
|
#36
|
 |
|
Member
Join Date: Nov 2002
Location: Kuala Lumpur, Malaysia (Boleh!)
Posts: 1,943
|
Quote:
Originally Posted by afterburn
... i use VS.net 2008 Pro.
|
How I wish. I am using VS 2003.
@¥åßßå, I agree with you ASP.NET's BIG learning curve. But, I guess it's worth for long term in software engineering line.
I can feel a bit of its reward now when I debugging some problems.
__________________
My Personal Home Page - www.findingsteve.net
... with God all things are possible (Matthew 19: 26)
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-24-2008, 12:08 PM
|
|
#37
|
 |
|
Can't say much here
Join Date: May 2004
Posts: 2,832
|
Look at CodeSmithTools.com they have an awesome tool to help with the migration process to .net or any other language. It is a .net based app, that you write scripts to do tasks against a DB or other source, you can write code with it in scripts. Takes the pain out of re-writing an app. it just rocks.
I wrote scripts to make Stored Procedures, WebForms for Listing data, and Insert/Update/Deletes, Dal that returns strongly typed datasets of business objects that are record layout of each table. Just rocks all day long.
__________________
ASP.net nice bits
Code Smith rocking tool for Code Generation in any language (Written in .net)
Red Gate SQL tools for DBA
Blog Personal blog
.afterburn
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-25-2008, 10:24 AM
|
|
#39
|
 |
|
Can't say much here
Join Date: May 2004
Posts: 2,832
|
not really; its all how you code not 3rd party control its a program that you script using .net like language to script it compiles it using a DomCode Provider and outputs code
__________________
ASP.net nice bits
Code Smith rocking tool for Code Generation in any language (Written in .net)
Red Gate SQL tools for DBA
Blog Personal blog
.afterburn
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-25-2008, 11:13 AM
|
|
#40
|
 |
|
Member
Join Date: Nov 2002
Location: Kuala Lumpur, Malaysia (Boleh!)
Posts: 1,943
|
hmm..not quite understand still. It's okay. 
__________________
My Personal Home Page - www.findingsteve.net
... with God all things are possible (Matthew 19: 26)
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-28-2008, 07:51 PM
|
|
#41
|
 |
|
Novice (Level 1)
Join Date: Jul 2008
Posts: 2
|
PHP is more easy to learn than .Net but .NET is more professional than Php.
I like .Net so I vote for it.
|
|
Add to del.icio.us
Can you digg it?
|
|
|
07-29-2008, 07:28 AM
|
|
#42
|
 |
|
Soldier (Level 11)
Join Date: May 2008
Posts: 114
|
Why is .NET more professional? If anything PHP is more professional to use, because it is more efficient and saves time.
Which seems more efficient:
ASP.NET
Code:
int i;for (i = 0; i < 10; i++)
{
Response.Write("value of i = " + i + "<br />");
}
or
PHP Code:
<?php
for ($i=0;$i<10;$i++) {
echo "value of i = $i <br />";
}
?>
Obviously, PHP is easier and businesses should be concerned with the ease of their code in there application. PHP is easier to read and to write which makes their job faster.
With PHP, you don't have to be concerned with joiningall of these strings together like you have to in ASP.NET.
__________________
"Peace cannot be achieved through violence, it can only be attained through understanding." - Ralph Waldo Emerson.
|
|
Add to del.icio.us
Can you digg it?
|
|
|
08-11-2008, 09:57 AM
|
|
#44
|
 |
|
Can't say much here
Join Date: May 2004
Posts: 2,832
|
i think you need to look into your string manipulations as i do not think string expansion is faster; You may want to do some timing of those functions. Besides that PHP is a scripting language; which by its very nature is an LogO(O) function just to parse and run the code. However .net is a DLL; after it is compile it runs as fast as machine code.
Faster what to read what the look that you actuall expaned to make it look larger than it is? or the string expansion that make the language slower?
Code:
for(int i = 0;i<10;i++)
Response.Write("value of i = " + i + "<br />");
The best thing about c# .net is type saftey and true OOP. Looks about the same now in length.
__________________
ASP.net nice bits
Code Smith rocking tool for Code Generation in any language (Written in .net)
Red Gate SQL tools for DBA
Blog Personal blog
.afterburn
|
|
Add to del.icio.us
Can you digg it?
|
|
|
08-11-2008, 02:58 PM
|
|
#45
|
 |
|
Veteran (Level 7)
Join Date: Aug 2008
Posts: 64
|
.NET is way too confusing... php is very simple to learn and a much better value of time.. more bang for your buck  .NET has way too long and extra parts to scripts, php is more strait forward.. i vote php!
the z. man
|
|
Add to del.icio.us
Can you digg it?
|
|
 |
|
|
KEEP TABS |
|
SPONSORS |
| |
|
| |
|
|
| |
|