1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

What is differnce between ASP & JSP .Which is Better?

Discussion in 'C#' started by ltimranjaved, Apr 22, 2009.

  1. #1
    dear i want to ask that is there any difference between asp and jsp.It seems similar to me except the name.what do u think...and also tell me which is better if at all they are different?
     
    ltimranjaved, Apr 22, 2009 IP
  2. bluebenz

    bluebenz Well-Known Member

    Messages:
    876
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    138
    #2
    Asp is server side script, script processed at server and transferred to the client (browser), while jsp is client side script where script is running at the browser. you can right click at a web page ended with .jsp and see the script inside it. In .asp page, you will not see the script.
     
    bluebenz, Apr 22, 2009 IP
  3. palme

    palme Active Member

    Messages:
    320
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #3
    asp is active server pages from Microsoft and jsp is Java server pages from SUN, that is to different languges are.you can use primerly VBScript in the asp , you can also use javascript.
    but jsp that's only java and jsp have special compiler to make binary file.
     
    palme, Apr 23, 2009 IP
    vihutuo likes this.
  4. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    so which is better asp or jsp
     
    ltimranjaved, Apr 25, 2009 IP
  5. emlak

    emlak Peon

    Messages:
    50
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    server side web programming languages are both different.
    to learn and write asp is simple ,
    There are more resources and hosting providers(IIS).
     
    emlak, Apr 25, 2009 IP
  6. pitagora

    pitagora Peon

    Messages:
    247
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #6
    you see....if you don't know the answer you probably should give all the wrong answers. You are confusing other people too. Both asp and jsp are server side languages. ASP is from microsoft and JSP is from SUN (Java). They are very similar in capabilities (as in both old and used less and less often). They were both replaced by newer technologies that are way better ASP.NET and JSF
     
    pitagora, Apr 25, 2009 IP
  7. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    so i can safely say that

    1. asp stands for Active server pages and jsp stands for java server pages
    2. In asp processing is done at server side and in jsp processing is doen at clients side.
    3. asp is from Microsoft and jsp from sun
    4. asp has been replaced by asp.net and jsp is being replaced by JSF


    so these are the only differnces or there can be something else
     
    ltimranjaved, Apr 26, 2009 IP
  8. camjohnson95

    camjohnson95 Active Member

    Messages:
    737
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #8
    Both are server side.
     
    camjohnson95, Apr 26, 2009 IP
  9. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #9
    thanks for your correction but then there is no difference between them except names or companies :(
    me still confused
     
    ltimranjaved, Apr 27, 2009 IP
  10. camjohnson95

    camjohnson95 Active Member

    Messages:
    737
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #10
    and they use a different syntax, or different language. ASP with VBScript would probably be more suitable for a beginner.
     
    camjohnson95, Apr 28, 2009 IP
  11. shan23

    shan23 Peon

    Messages:
    227
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #11
    good information shared
     
    shan23, Apr 29, 2009 IP
  12. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #12
    yeah asp with VB is an easier choice
     
    ltimranjaved, May 1, 2009 IP
  13. seokingdom07

    seokingdom07 Banned

    Messages:
    132
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #13
    JSP and ASP do have some basic concepts in common. They both make use of simple sever-side scripting to provide access to Web server information and functionality. They both do so using object oriented scripting. And they both started out with similar styles of delimiting this scripting from a page's content. In fact, Microsoft is replacing ASP with ASP+, which is even more like JSP than ASP in that its pages are compiled upon request and run in a 'virtual machine' (which supports multiple languages and is written in C#).

    Yet while ASP primarily supports two scripting languages -- JScript and VBScript -- JSP actually supports real Java code, not a new scripting language. The difference is that the Java code inside a JSP page is more script-like because it doesn't require Java class and package definitions. As you will see, the Java code inside JSP is added to methods of a Java Servlet that are generated the first time the JSP is requested. Of course, JScript, VBScript, and Java are all object oriented to some degree, or maybe to avoid getting into a political argument with those of you would dispute this claim I should refer to them as 'Quasi-Object-Oriented.' Whatever we choose to call them, we can at least agree that the scripting languages used by JSP and ASP are all provided with a set of pre-established objects by the Web server that they use to generate a dynamic Web page.
     
    seokingdom07, May 5, 2009 IP
    ltimranjaved likes this.
  14. mavili

    mavili Active Member

    Messages:
    11
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    88
    #14
    if you are new on web scripting and don't know about java programming, php or asp should be a good start. i am using asp and you can easily learn it, but php is easier on many ways. (you can see this argument on almost every forum : which one ? asp or php ? this is up to you.)
     
    mavili, May 6, 2009 IP
    ltimranjaved likes this.
  15. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #15
    i have started with jsp
     
    ltimranjaved, May 10, 2009 IP
  16. itravelcn

    itravelcn Active Member

    Messages:
    68
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #16
    The advantages of each...
     
    itravelcn, May 13, 2009 IP
  17. shan23

    shan23 Peon

    Messages:
    227
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #17
    no one has mentioned it
     
    shan23, May 13, 2009 IP
  18. Corwin

    Corwin Well-Known Member

    Messages:
    2,438
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    195
    #18
    The language you use is less important than the programmer using the language.
     
    Corwin, May 14, 2009 IP
  19. ltimranjaved

    ltimranjaved Peon

    Messages:
    254
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #19

    excellent this is the crux of programming
     
    ltimranjaved, Jun 28, 2009 IP
    Corwin likes this.
  20. gironaairport

    gironaairport Peon

    Messages:
    59
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #20
    grat information shared thats why i love dp and come again and again to it
     
    gironaairport, Sep 13, 2009 IP