ASP Free Lounge
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsOtherASP Free Lounge

Closed Thread
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old June 9th, 2006, 10:43 PM
swirl swirl is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2006
Posts: 4 swirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 23 m 26 sec
Reputation Power: 0
Question Please explain asp? asp.net? aspx?

Hi!
I'm new and about asp. Are these all the same species asp? asp.net? aspx? Can you use MS Visual Web Developer to edit a aspx file? Do you know of any good places for a newbie to get started on learning aspx. Any and all advice for a non-techie would be greatly appreciated.
Thanks.

Reply With Quote
  #2  
Old June 9th, 2006, 11:11 PM
gcnason's Avatar
gcnason gcnason is offline
Aspiring Laborer
ASP Free Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: Los Angeles
Posts: 142 gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 20 h 2 m 4 sec
Reputation Power: 22
Send a message via AIM to gcnason
Quote:
Originally Posted by swirl
Hi!
I'm new and about asp. Are these all the same species asp? asp.net? aspx? Can you use MS Visual Web Developer to edit a aspx file? Do you know of any good places for a newbie to get started on learning aspx. Any and all advice for a non-techie would be greatly appreciated.
Thanks.

There are a ton of tutorials online, but I'd recommend starting with these video tutorials to get started from the beginning with the most modern version of ASP, 2.0.

http://msdn.microsoft.com/vstudio/express/vwd/learning/

Reply With Quote
  #3  
Old June 9th, 2006, 11:26 PM
swirl swirl is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2006
Posts: 4 swirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 23 m 26 sec
Reputation Power: 0
Question

thanks! this will be helpful. but do you know if the file types asp, aspx and asp.net are they all the same.

Reply With Quote
  #4  
Old June 10th, 2006, 12:06 AM
gcnason's Avatar
gcnason gcnason is offline
Aspiring Laborer
ASP Free Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: Los Angeles
Posts: 142 gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 20 h 2 m 4 sec
Reputation Power: 22
Send a message via AIM to gcnason
Quote:
Originally Posted by swirl
thanks! this will be helpful. but do you know if the file types asp, aspx and asp.net are they all the same.

.aspx and ASP.NET are related. ASP.NET 1.1 and 2.0 both use the file extension .aspx. It's this extension that tells IIS how it should interpret them.

.asp is the elder ASP 3.0 file extension, which if you're only looking to do minor scripting, might not be a bad place to start with all of this, because it's quite a bit simpler than .NET.

Does this help?

Reply With Quote
  #5  
Old June 10th, 2006, 12:24 AM
swirl swirl is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2006
Posts: 4 swirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 23 m 26 sec
Reputation Power: 0
Quote:
Originally Posted by gcnason
.aspx and ASP.NET are related. ASP.NET 1.1 and 2.0 both use the file extension .aspx. It's this extension that tells IIS how it should interpret them.

.asp is the elder ASP 3.0 file extension, which if you're only looking to do minor scripting, might not be a bad place to start with all of this, because it's quite a bit simpler than .NET.

Does this help?


It does. just i have this site that was already developed in aspx need to make few copy changes and I'm sure more later down the road. so was hoping to get a quick jump start. I've started on the video you recommended so that was great find. If u think else please post. thanx!

Reply With Quote
  #6  
Old June 10th, 2006, 12:29 AM
gcnason's Avatar
gcnason gcnason is offline
Aspiring Laborer
ASP Free Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: Los Angeles
Posts: 142 gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 20 h 2 m 4 sec
Reputation Power: 22
Send a message via AIM to gcnason
Quote:
Originally Posted by swirl
It does. just i have this site that was already developed in aspx need to make few copy changes and I'm sure more later down the road. so was hoping to get a quick jump start. I've started on the video you recommended so that was great find. If u think else please post. thanx!

I'd recommend opening the .aspx page containing the copy you'd like to udpate in Visual Web Developer, Dreamweaver or Notepad, and do a Find for the text you want to replace. You should find it and can easily edit it there. If you don't find it, open up the .aspx.vb file with the same name as the .aspx. It may be that the copy is written to the html dynamically in the codebehind. Unless it's a complex site pulling the copy from .xml files or another datasource, you should have no problem editing the copy this way. If the site is using a database to populate the pages with copy, that may be where the copy to edit is. Lots of options

Reply With Quote
  #7  
Old June 10th, 2006, 12:32 AM
swirl swirl is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2006
Posts: 4 swirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 23 m 26 sec
Reputation Power: 0
Quote:
Originally Posted by gcnason
I'd recommend opening the .aspx page containing the copy you'd like to udpate in Visual Web Developer, Dreamweaver or Notepad, and do a Find for the text you want to replace. You should find it and can easily edit it there. If you don't find it, open up the .aspx.vb file with the same name as the .aspx. It may be that the copy is written to the html dynamically in the codebehind. Unless it's a complex site pulling the copy from .xml files or another datasource, you should have no problem editing the copy this way. If the site is using a database to populate the pages with copy, that may be where the copy to edit is. Lots of options


darn you rock. thanks for the options. will give it a try.

Reply With Quote
  #8  
Old June 11th, 2006, 01:51 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,838 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 14 h 30 m 10 sec
Reputation Power: 2389
some side notes:
the aspx file might have associated Code Behind file: this is file with the same name,
but different extension which is usually .vb or .cs depending on the language the page
is written in - .vb for Visual Basic .NET and .cs for C# language.
changing the text in the Code Behind file is not enough, after the change you have
to re-compile the whole project and place the new dll file in the bin folder.

Reply With Quote
  #9  
Old June 15th, 2006, 02:11 AM
roberemok roberemok is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: Toronto
Posts: 188 roberemok User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 Days 8 h 12 m 45 sec
Reputation Power: 5
Quote:
Originally Posted by gcnason
.aspx and ASP.NET are related. ASP.NET 1.1 and 2.0 both use the file extension .aspx. It's this extension that tells IIS how it should interpret them.

.asp is the elder ASP 3.0 file extension, which if you're only looking to do minor scripting, might not be a bad place to start with all of this, because it's quite a bit simpler than .NET.

Does this help?


Would learning ASP help me with .NET if I wanted to learn down the road. I'm having fun learning ASP currently. I'm also finding tons of ASP books on EBAY for $5.00. Does nobody care about ASP? Trying to figure this all out.

Thanks

Reply With Quote
  #10  
Old June 15th, 2006, 02:39 AM
gcnason's Avatar
gcnason gcnason is offline
Aspiring Laborer
ASP Free Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: Los Angeles
Posts: 142 gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level)gcnason User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 20 h 2 m 4 sec
Reputation Power: 22
Send a message via AIM to gcnason
Quote:
Originally Posted by roberemok
Would learning ASP help me with .NET if I wanted to learn down the road. I'm having fun learning ASP currently. I'm also finding tons of ASP books on EBAY for $5.00. Does nobody care about ASP? Trying to figure this all out.
Thanks
I wouldn't say that ASP is a poor choice of language to learn, it's just not the most modern. I still use it for simple scripting on pages needing only basic If/Else statements, such as for displaying different content based on parameters passed to the page or database values, and you can do much more with it, but if you want to accomplish more complex things than this, then why not use a more modern language that has built-in many things that in ASP requires coding lots of lines.

To more directly answer your question, I'd say yes and no. ASP will familiarize you with server-side scripting, so it'll help, but ASP and .NET are different languages, so you probably will need to start from the beginning when starting with .NET.

If you can give me an idea of what you're going to be trying to accomplish I may be able to advise on which language I'd use, if it'd be beneficial to take on .NET or if ASP would suffice...
Comments on this post
Shadow Wizard agrees: couldn't explain it any better
roberemok agrees: Perfect!

Reply With Quote
  #11  
Old June 15th, 2006, 06:39 AM
roberemok roberemok is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: Toronto
Posts: 188 roberemok User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 Days 8 h 12 m 45 sec
Reputation Power: 5
This is exactly what I wanted to know. I'm doing very basic stuff right now so I will stick with ASP. I'm also new to server side scripting and ASP seems like a nice place to start.

Thanks for your time and your detailed explanation.

Reply With Quote
  #12  
Old June 15th, 2006, 09:51 AM
banker's Avatar
banker banker is offline
Charging Rhino Wizard
ASP Free Regular (2000 - 2499 posts)
 
Join Date: Dec 2004
Location: 127.0.0.1
Posts: 2,053 banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 5 Days 23 h 28 m 28 sec
Reputation Power: 37
Quote:
Originally Posted by roberemok
This is exactly what I wanted to know. I'm doing very basic stuff right now so I will stick with ASP. I'm also new to server side scripting and ASP seems like a nice place to start.

Thanks for your time and your detailed explanation.


ASP is a great place to start...and it is still used. The learning curve for ASP is much easier than ASP.NET. However, you should keep in mind that it is dated technology and is going to be used less and less. If you expect to have an engineering future, you should learn a more modern language like ASP.NET or PHP.
Comments on this post
roberemok agrees!
__________________
ShepherdWeb :: Charging Rhino Wizard

I know of no more encouraging fact than the unquestionable ability of man to elevate his life by conscious endeavor.
{Henry David Thoreau}

§ shepherdweb.com
§ fariswheel productions
§ reagan administration

Reply With Quote
  #13  
Old June 15th, 2006, 10:00 AM
roberemok roberemok is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: Toronto
Posts: 188 roberemok User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 Days 8 h 12 m 45 sec
Reputation Power: 5
Quote:
Originally Posted by banker
ASP is a great place to start...and it is still used. The learning curve for ASP is much easier than ASP.NET. However, you should keep in mind that it is dated technology and is going to be used less and less. If you expect to have an engineering future, you should learn a more modern language like ASP.NET or PHP.


Thanks! I'm learning this on a personal level. A fun baseball site I build. ASP is fine for now. Once I get more comfortable I will try the .NET. Regards.

Reply With Quote
  #14  
Old August 17th, 2009, 09:09 AM
markWilson markWilson is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Posts: 253 markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level)markWilson User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 4 Days 16 h 24 m 19 sec
Reputation Power: 82
Quote:
Originally Posted by swirl
Hi!
I'm new and about asp. Are these all the same species asp? asp.net? aspx? Can you use MS Visual Web Developer to edit a aspx file? Do you know of any good places for a newbie to get started on learning aspx. Any and all advice for a non-techie would be greatly appreciated.
Thanks.


have a look at this
help on asp.net
__________________
if you found this post is useful click (right side on this reply ) and agree

Coding Stuffs,

web development help
Thank You,
KiranK

Reply With Quote
  #15  
Old August 17th, 2009, 10:09 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,838 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2Folding Points: 549372 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 14 h 30 m 10 sec
Reputation Power: 2389
please don't resurrect old threads, if you have something new to say just start new thread.


--thread closed.

Reply With Quote
Closed Thread

Viewing: ASP Free ForumsOtherASP Free Lounge > Please explain asp? asp.net? aspx?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek