I want to learn to develop web applications in Java. Where do I start?
Q. I have an extensive knowledge of PHP and MySQL, and I have developed several web applications using these technologies. Now I want to migrate to Java - based web development. I also have an extensive knowledge of Object Oriented Programming paradigm.
Asked by treslashin - Sun Dec 21 07:35:43 2008 - - 3 Answers - 0 Comments
A. I think you can find everything you're looking for here: A tutorial: A forum to post questions and receive help: A nice (and free) online "class": J2EE specific tutorial: Best of luck. Edit on 12/22/08 at 13:35 GMT - Noticed that I messed up the link for the tutorial while cutting and pasting. Fixed it. Sorry for any inconvenience.
Answered by Former Software Developer - Sun Dec 21 07:43:28 2008
Q. I have an extensive knowledge of PHP and MySQL, and I have developed several web applications using these technologies. Now I want to migrate to Java - based web development. I also have an extensive knowledge of Object Oriented Programming paradigm.
Asked by treslashin - Sun Dec 21 07:35:43 2008 - - 3 Answers - 0 Comments
A. I think you can find everything you're looking for here: A tutorial: A forum to post questions and receive help: A nice (and free) online "class": J2EE specific tutorial: Best of luck. Edit on 12/22/08 at 13:35 GMT - Noticed that I messed up the link for the tutorial while cutting and pasting. Fixed it. Sorry for any inconvenience.
Answered by Former Software Developer - Sun Dec 21 07:43:28 2008
What programming language is used to create web applications?
Q. I'm looking to create a file-hosting website... "What programming language is used to create web applications?" THANKS!
Asked by curiousprogrammer - Wed Oct 15 14:27:04 2008 - - 4 Answers - 1 Comments
A. c++, java, c#, and php and many others for file hosting wi would chose to use php
Answered by aadshdrc - Wed Oct 15 14:31:47 2008
Q. I'm looking to create a file-hosting website... "What programming language is used to create web applications?" THANKS!
Asked by curiousprogrammer - Wed Oct 15 14:27:04 2008 - - 4 Answers - 1 Comments
A. c++, java, c#, and php and many others for file hosting wi would chose to use php
Answered by aadshdrc - Wed Oct 15 14:31:47 2008
In terms of a Web Applications Developer role, what does bespoke web applications mean?
Q. The candidate will be responsible for assisting with the design, development and maintenance of websites, content management systems, e-commerce and other bespoke web applications.
Asked by djbennett999 - Tue Jul 8 10:13:49 2008 - - 3 Answers - 0 Comments
A. Bespoke derives from the word "bespeak", meaning "to ask for". Bespoke web applications would refer to web applications designed to the customer's specifications. Tailor fit would also be a welcome analogy. Web applications that are "tailor fitted" to meet the customers needs. I hope that helps.
Answered by Jolly Gardener - Wed Jul 16 03:30:45 2008
Q. The candidate will be responsible for assisting with the design, development and maintenance of websites, content management systems, e-commerce and other bespoke web applications.
Asked by djbennett999 - Tue Jul 8 10:13:49 2008 - - 3 Answers - 0 Comments
A. Bespoke derives from the word "bespeak", meaning "to ask for". Bespoke web applications would refer to web applications designed to the customer's specifications. Tailor fit would also be a welcome analogy. Web applications that are "tailor fitted" to meet the customers needs. I hope that helps.
Answered by Jolly Gardener - Wed Jul 16 03:30:45 2008
How do i become a web applications developer?
Q. I am a junior in high school and i plan on getting a career in web application developing.What i want to know is what do i need to do to get started?
Asked by caleb4992 - Thu Sep 18 23:10:33 2008 - - 4 Answers - 0 Comments
A. First off, you will need to learn basic web design using (x)HTML and CSS. Then, you'll most likely want to become very familiar with some sort of backend language, like PHP and a database like MySQL. Then, to combine the two, you should learn JavaScript which will ultimately give you the ability to create powerful web applications and connect them to your backend through AJAX. If you are unfamiliar with many, or all, of the terms I used above, I would head over to and look at their basic HTML tutorial, and many things will follow from there.
Answered by Nick B - Thu Sep 18 23:25:34 2008
Q. I am a junior in high school and i plan on getting a career in web application developing.What i want to know is what do i need to do to get started?
Asked by caleb4992 - Thu Sep 18 23:10:33 2008 - - 4 Answers - 0 Comments
A. First off, you will need to learn basic web design using (x)HTML and CSS. Then, you'll most likely want to become very familiar with some sort of backend language, like PHP and a database like MySQL. Then, to combine the two, you should learn JavaScript which will ultimately give you the ability to create powerful web applications and connect them to your backend through AJAX. If you are unfamiliar with many, or all, of the terms I used above, I would head over to and look at their basic HTML tutorial, and many things will follow from there.
Answered by Nick B - Thu Sep 18 23:25:34 2008
What job can a person land in with having experience in making web and desktop applications?...see details?
Q. What job can a person land in if he/she has experience in making desktop applications using (C#) ,managing databases such as (SQL Server 2005) , creating Web applications with the use of macromedia programs using (ASP.Net , Macromedia Dreamweaver, Flash and Fireworks).Having skills in managing people and communicating effectively. With also having experience in marketing
Asked by rav - Fri Aug 31 08:01:53 2007 - - 2 Answers - 0 Comments
A. Unlimited job opportunities for you. Why not work for yourself? Good Luck.
Answered by SK - Fri Aug 31 08:19:29 2007
Q. What job can a person land in if he/she has experience in making desktop applications using (C#) ,managing databases such as (SQL Server 2005) , creating Web applications with the use of macromedia programs using (ASP.Net , Macromedia Dreamweaver, Flash and Fireworks).Having skills in managing people and communicating effectively. With also having experience in marketing
Asked by rav - Fri Aug 31 08:01:53 2007 - - 2 Answers - 0 Comments
A. Unlimited job opportunities for you. Why not work for yourself? Good Luck.
Answered by SK - Fri Aug 31 08:19:29 2007
HOW DO I COMMUNICATE BETWEEN TWO JAVA BASED WEB APPLICATIONS WITHOUT WEB SERVICES?
Q. hI, i have two web applications one is school and another one is accounts, more clearly first one is a web application of a school management system second one is the accounts system. i need to communicate two web applications. but i have no scope to use any web services. please tell me, thanks in advance. The technologies i am using is jee,struts,hibernate and spring
Asked by biju lal - Tue Jun 2 08:03:14 2009 - - 4 Answers - 0 Comments
A. Web service is just a concept of web application. It's not something you "use", it's something you can make. From your description it's obvious that your management system will behave like a web service, at least for some part. The easiest way to setup a communication is through XML. When one application needs to send data to the other, just open up a port and send some XML that the other can interpret and answer. You could also do that by the means of a DB, using Hibernate, but synchronization would be difficult. XML is a given if you want to use a direct connection.
Answered by elven_rangers - Tue Jun 2 08:11:24 2009
Q. hI, i have two web applications one is school and another one is accounts, more clearly first one is a web application of a school management system second one is the accounts system. i need to communicate two web applications. but i have no scope to use any web services. please tell me, thanks in advance. The technologies i am using is jee,struts,hibernate and spring
Asked by biju lal - Tue Jun 2 08:03:14 2009 - - 4 Answers - 0 Comments
A. Web service is just a concept of web application. It's not something you "use", it's something you can make. From your description it's obvious that your management system will behave like a web service, at least for some part. The easiest way to setup a communication is through XML. When one application needs to send data to the other, just open up a port and send some XML that the other can interpret and answer. You could also do that by the means of a DB, using Hibernate, but synchronization would be difficult. XML is a given if you want to use a direct connection.
Answered by elven_rangers - Tue Jun 2 08:11:24 2009
How do i get web applications from my computer to my iPod?
Q. so i just bought a bunch of apps for my new iPod touch on my laptop, and when I connected my touch to the computer nothing happened. I have no idea how to get the apps on the iPod because when i plug it it and the syncing screen pops up it dosn't mentionn anything about my web apps. I know I actually bought them, because when I tried to purchase them again it said i already owned it. please help me!!!
Asked by kara s - Tue Sep 9 22:35:47 2008 - - 1 Answers - 0 Comments
Q. so i just bought a bunch of apps for my new iPod touch on my laptop, and when I connected my touch to the computer nothing happened. I have no idea how to get the apps on the iPod because when i plug it it and the syncing screen pops up it dosn't mentionn anything about my web apps. I know I actually bought them, because when I tried to purchase them again it said i already owned it. please help me!!!
Asked by kara s - Tue Sep 9 22:35:47 2008 - - 1 Answers - 0 Comments
what is an API in regards to web applications or website development?
Q. APIs is a termed i have encoutered so many times on the web and i need t know exactly what it is?
Asked by oquidave - Wed Feb 4 13:36:51 2009 - - 4 Answers - 0 Comments
A. An application programming interface (API) is a set of routines, data structures, object classes and/or protocols provided by libraries and/or operating system services in order to support the building of applications. [1] An API may be: Language-dependent, that is, only available in a particular programming language, utilizing the particular syntax and elements of the programming language to make the API convenient to use in this particular context. Language-independent, that is, written in a way that means they can be called from several programming languages (typically an assembly/C-level interface). This is a desired feature for a service-style API which is not bound to a particular process or system and is available as a remote… [cont.]
Answered by Kishore - Wed Feb 4 13:42:48 2009
Q. APIs is a termed i have encoutered so many times on the web and i need t know exactly what it is?
Asked by oquidave - Wed Feb 4 13:36:51 2009 - - 4 Answers - 0 Comments
A. An application programming interface (API) is a set of routines, data structures, object classes and/or protocols provided by libraries and/or operating system services in order to support the building of applications. [1] An API may be: Language-dependent, that is, only available in a particular programming language, utilizing the particular syntax and elements of the programming language to make the API convenient to use in this particular context. Language-independent, that is, written in a way that means they can be called from several programming languages (typically an assembly/C-level interface). This is a desired feature for a service-style API which is not bound to a particular process or system and is available as a remote… [cont.]
Answered by Kishore - Wed Feb 4 13:42:48 2009
I want Case studies/White papers for understanding the structures of Web applications or web sites ?
Q. I am going to work on a web site project. my job is to chalk out the plan for it, and define directory,database and file structures. As i dont have any prior knowledge, I need to see some sample case studies to get a greater understanding of how large sites are designed. Please help
Asked by Rwik - Tue Oct 7 11:06:29 2008 - - 1 Answers - 1 Comments
A. try this or or
Answered by Avinash D - Tue Oct 7 11:15:15 2008
Q. I am going to work on a web site project. my job is to chalk out the plan for it, and define directory,database and file structures. As i dont have any prior knowledge, I need to see some sample case studies to get a greater understanding of how large sites are designed. Please help
Asked by Rwik - Tue Oct 7 11:06:29 2008 - - 1 Answers - 1 Comments
A. try this or or
Answered by Avinash D - Tue Oct 7 11:15:15 2008
which website is the popular web for applications for a job in USA?
Q. which website is the popular web for applications for a job in USA?
Asked by Aurica W - Tue Dec 11 02:17:23 2007 - - 2 Answers - 0 Comments
A. The two most popular that I can think of are: www.monster.com www.careerbuilder.com
Answered by banshee1068 - Tue Dec 11 02:21:11 2007
Q. which website is the popular web for applications for a job in USA?
Asked by Aurica W - Tue Dec 11 02:17:23 2007 - - 2 Answers - 0 Comments
A. The two most popular that I can think of are: www.monster.com www.careerbuilder.com
Answered by banshee1068 - Tue Dec 11 02:21:11 2007
How do you create ASP web applications that are compatible with SQL and Oracle databases?
Q. I'm researching ways in which I can build Classic ASP applications that can work with a SQL and Oracle database based on the user's preference. What changes in database connections and code would be needed? Is their an online article that discusses this?
Asked by Valerie H - Sat Jun 30 01:12:22 2007 - - 3 Answers - 0 Comments
A. It doesn't really matter, ASP talks to almost all databases the same way. OLEDB is prefered, though it could do ADO as well.
Answered by Kasey C - Sat Jun 30 02:25:16 2007
Q. I'm researching ways in which I can build Classic ASP applications that can work with a SQL and Oracle database based on the user's preference. What changes in database connections and code would be needed? Is their an online article that discusses this?
Asked by Valerie H - Sat Jun 30 01:12:22 2007 - - 3 Answers - 0 Comments
A. It doesn't really matter, ASP talks to almost all databases the same way. OLEDB is prefered, though it could do ADO as well.
Answered by Kasey C - Sat Jun 30 02:25:16 2007
What Web applications do you have to recommend?
Q. like Wordpress, MediaWiki, those are the most famous applications, but what other cool ones do you recommend. TiddlyWiki is fun as well...
Asked by maddnyma - Thu Oct 30 18:24:55 2008 - - 2 Answers - 0 Comments
A. For what purpose are you asking? Joomla is awesome for building websites
Answered by YemenTube - Thu Oct 30 18:29:02 2008
Q. like Wordpress, MediaWiki, those are the most famous applications, but what other cool ones do you recommend. TiddlyWiki is fun as well...
Asked by maddnyma - Thu Oct 30 18:24:55 2008 - - 2 Answers - 0 Comments
A. For what purpose are you asking? Joomla is awesome for building websites
Answered by YemenTube - Thu Oct 30 18:29:02 2008
How do i write easier J2ee web applications ?
Q. I want to develop Java Enterprise Applications in a convenient manner without the encumbering process of setting up a multi-dimensional or multi-tiered environement.
Asked by ghostrider273 - Wed Mar 1 07:47:08 2006 - - 1 Answers - 0 Comments
A. Use model -1 architecture, use only JSP and JavaBeans, even if u don't want JavaBeans U can use JSP and any backend database.
Answered by kicky1001 - Wed Mar 1 11:50:05 2006
Q. I want to develop Java Enterprise Applications in a convenient manner without the encumbering process of setting up a multi-dimensional or multi-tiered environement.
Asked by ghostrider273 - Wed Mar 1 07:47:08 2006 - - 1 Answers - 0 Comments
A. Use model -1 architecture, use only JSP and JavaBeans, even if u don't want JavaBeans U can use JSP and any backend database.
Answered by kicky1001 - Wed Mar 1 11:50:05 2006
What is a good name for a business that designs all types of Web pages and Applications Freelance?
Q. I'm going to start a new business next year, as a new years resolution. What is a good name for a business that designs all types of Web pages, databases and Applications Freelance? Remember, 1st rule of business K. I. S. S.
Asked by CandyToy - Fri Nov 28 07:39:56 2008 - - 3 Answers - 0 Comments
A. Designed For You This is a great article about - How to Select a Company or Product Name - The article has some good advice on how to research names, and what to becareful of. Here are some tips on selecting a domain name Should get you started! Best of luck
Answered by Dan Roberts - Fri Nov 28 18:23:27 2008
Q. I'm going to start a new business next year, as a new years resolution. What is a good name for a business that designs all types of Web pages, databases and Applications Freelance? Remember, 1st rule of business K. I. S. S.
Asked by CandyToy - Fri Nov 28 07:39:56 2008 - - 3 Answers - 0 Comments
A. Designed For You This is a great article about - How to Select a Company or Product Name - The article has some good advice on how to research names, and what to becareful of. Here are some tips on selecting a domain name Should get you started! Best of luck
Answered by Dan Roberts - Fri Nov 28 18:23:27 2008
Will a Webmaster typically have the skills to develope PHP with SQL web applications?
Q. I'm looking for someone to take my website to the "next level" using PHP with SQL, I do not have the time required to get in that deep. I have a close friend who's son is a Webmaster and I would like to ask him if he is interested in the work but I don't want want him to jump and say yes to try to get the work with both of us being ultimately being disappointed and possibly straining my relationship with my friend.
Asked by Try This - Wed May 6 09:10:55 2009 - - 3 Answers - 0 Comments
A. What you need is a web developer. Particularly a web developer with experience on on a LAMP (Linux, Apache,MySQL, PHP) platform. It's possible a webmaster has these skills, the title webmaster ( like any job title) can be a bit vague. It usually means they are in general in charge of the overall operation of a website, The question is, does that website use PHP and SQL? Does he have a developer (in house or outsourced) to do the programing work. Bottom line is you'll have to ask him. Maybe before telling him why you're asking ask him if he's made a LAMP based website utilizing PHP and MYSQL. On the other hand, even if he is experienced, there are other complications that might come up ( doesn't deliver for some other reason, takes too… [cont.]
Answered by Dane_62 - Wed May 6 16:55:02 2009
Q. I'm looking for someone to take my website to the "next level" using PHP with SQL, I do not have the time required to get in that deep. I have a close friend who's son is a Webmaster and I would like to ask him if he is interested in the work but I don't want want him to jump and say yes to try to get the work with both of us being ultimately being disappointed and possibly straining my relationship with my friend.
Asked by Try This - Wed May 6 09:10:55 2009 - - 3 Answers - 0 Comments
A. What you need is a web developer. Particularly a web developer with experience on on a LAMP (Linux, Apache,MySQL, PHP) platform. It's possible a webmaster has these skills, the title webmaster ( like any job title) can be a bit vague. It usually means they are in general in charge of the overall operation of a website, The question is, does that website use PHP and SQL? Does he have a developer (in house or outsourced) to do the programing work. Bottom line is you'll have to ask him. Maybe before telling him why you're asking ask him if he's made a LAMP based website utilizing PHP and MYSQL. On the other hand, even if he is experienced, there are other complications that might come up ( doesn't deliver for some other reason, takes too… [cont.]
Answered by Dane_62 - Wed May 6 16:55:02 2009
Why can I not get Yahoo Games and other web applications to work correctly?
Q. I tried downloading Java and I've tried a few other things, but when I try to play Yahoo Games, for example, all I get is a blank (or gray) box. How can I change this?
Asked by tennisoh20 - Sun Sep 17 15:32:32 2006 - - 1 Answers - 0 Comments
A. Hello all, look at new laid up in a network the Internet. I from other country, therefore can write wrong, pass this reference to the friends.
Answered by Victor V - Sun Sep 17 15:39:25 2006
Q. I tried downloading Java and I've tried a few other things, but when I try to play Yahoo Games, for example, all I get is a blank (or gray) box. How can I change this?
Asked by tennisoh20 - Sun Sep 17 15:32:32 2006 - - 1 Answers - 0 Comments
A. Hello all, look at new laid up in a network the Internet. I from other country, therefore can write wrong, pass this reference to the friends.
Answered by Victor V - Sun Sep 17 15:39:25 2006
Is there a Master's degree in Graphic design and web development applications?
Q. Arts, graphic design, web development applications for a computer engineer and a B.Sc. holder. Is it possible to get a Master's degree in arts while you have got a B.Sc. degree?
Asked by AshOsaki - Sat Mar 25 14:57:01 2006 - - 2 Answers - 0 Comments
A. These sites might help you. It lists schools by State, then search that school's website. Here's the answer from the last website: However you ask about "WEB" design. Let's get something straight from the get-go. FIRST and foremost you must learn DESIGN. Period. __ Now, most of the time I don't know if people are actually talking about DESIGN or if they're merely talking about the mechanics of building web information delivery. While they are two entirely different things, the industry seems to have muddled their meanings, just to sell you stuff. If you take a sober look at the wildly successful "Designing Web Graphics" book, you'll see it has nothing to do with design. Nothing. If you look at 99% of all the other books that have "Web"… [cont.]
Answered by nanlwart - Sat Mar 25 15:08:30 2006
Q. Arts, graphic design, web development applications for a computer engineer and a B.Sc. holder. Is it possible to get a Master's degree in arts while you have got a B.Sc. degree?
Asked by AshOsaki - Sat Mar 25 14:57:01 2006 - - 2 Answers - 0 Comments
A. These sites might help you. It lists schools by State, then search that school's website. Here's the answer from the last website: However you ask about "WEB" design. Let's get something straight from the get-go. FIRST and foremost you must learn DESIGN. Period. __ Now, most of the time I don't know if people are actually talking about DESIGN or if they're merely talking about the mechanics of building web information delivery. While they are two entirely different things, the industry seems to have muddled their meanings, just to sell you stuff. If you take a sober look at the wildly successful "Designing Web Graphics" book, you'll see it has nothing to do with design. Nothing. If you look at 99% of all the other books that have "Web"… [cont.]
Answered by nanlwart - Sat Mar 25 15:08:30 2006
Does anybody know of any open source real estate web applications?
Q. The web application would need to have the ability to do the following at a minimal: -Create User Accounts -Login -Provide Users Ability to Post Properties w/ Photos -Provide Users Ability to Manage/Modify Properties -Provide Users Ability to Search Properties
Asked by Patrick - Thu Feb 28 03:21:19 2008 - - 1 Answers - 0 Comments
A. Yes. 'real estate website'. go to www.sourceforge.net. the description: 'A complete real estate management software package. Completely web-based, set site colors, titles and layout all from the administrator login. Includes user signup, listing creation, printable listing format, image uploads with automatic thumbnail creation' (Just search for real estate at sourceforge.net
Answered by Anthony - Thu Feb 28 03:30:20 2008
Q. The web application would need to have the ability to do the following at a minimal: -Create User Accounts -Login -Provide Users Ability to Post Properties w/ Photos -Provide Users Ability to Manage/Modify Properties -Provide Users Ability to Search Properties
Asked by Patrick - Thu Feb 28 03:21:19 2008 - - 1 Answers - 0 Comments
A. Yes. 'real estate website'. go to www.sourceforge.net. the description: 'A complete real estate management software package. Completely web-based, set site colors, titles and layout all from the administrator login. Includes user signup, listing creation, printable listing format, image uploads with automatic thumbnail creation' (Just search for real estate at sourceforge.net
Answered by Anthony - Thu Feb 28 03:30:20 2008
What language for web applications?
Q. I am a freshman computer engineer in college. All of the programming we have done is in java/C++, and although I could use java to develop web applications I know there are better routes. So, what do you guys think I should go for (I need to design a web application over the summer)... python, php, perl, AJAX??
Asked by jandrox_ox - Wed Mar 26 18:28:44 2008 - - 3 Answers - 0 Comments
A. I suggest C# ASP.net using Visual Studio. It's very powerful and scalable. Good news is that if you know C, you'll catch on with C#. It's pretty much the same. Also you know Java which is similiar in concept. You'll get to use AJAX as well if needed.
Answered by Destro - Wed Mar 26 18:33:09 2008
Q. I am a freshman computer engineer in college. All of the programming we have done is in java/C++, and although I could use java to develop web applications I know there are better routes. So, what do you guys think I should go for (I need to design a web application over the summer)... python, php, perl, AJAX??
Asked by jandrox_ox - Wed Mar 26 18:28:44 2008 - - 3 Answers - 0 Comments
A. I suggest C# ASP.net using Visual Studio. It's very powerful and scalable. Good news is that if you know C, you'll catch on with C#. It's pretty much the same. Also you know Java which is similiar in concept. You'll get to use AJAX as well if needed.
Answered by Destro - Wed Mar 26 18:33:09 2008
Wiki Interfaces usage in web based applications?
Q. Recently my manager hinted that we should move towards Wiki interfaces. As I researched online for the same, I got understand that its user customizable & editable web pages. As out portal is a collection of web applications(Finance,reim bursement, eTravel,HR etc) I don't see its applicability here. Can anybody throw light on this?
Asked by robbiez7 - Tue Apr 15 02:14:43 2008 - - 1 Answers - 0 Comments
A. We have several wikis at my work place (govt organisation) and they are used to present lots of information. We also have Internet and Intranet sites as well as finance, travel etc. systems, which are separate to our wikis. But there are links to some of our wikis (helpdesk wiki) from our Intranet. Our helpdesk has a wiki where it presents lots of useful information about our IT environment to all our customers. The IT section also has a private wiki for the section only that documents procedures in one place so it can all be searched for information. Many of the other sections in our workplace are also using wikis to share their procedural information and link to documents that their section should be able to find. Wikis are easier… [cont.]
Answered by ecocath - Tue Apr 15 09:42:20 2008
Q. Recently my manager hinted that we should move towards Wiki interfaces. As I researched online for the same, I got understand that its user customizable & editable web pages. As out portal is a collection of web applications(Finance,reim bursement, eTravel,HR etc) I don't see its applicability here. Can anybody throw light on this?
Asked by robbiez7 - Tue Apr 15 02:14:43 2008 - - 1 Answers - 0 Comments
A. We have several wikis at my work place (govt organisation) and they are used to present lots of information. We also have Internet and Intranet sites as well as finance, travel etc. systems, which are separate to our wikis. But there are links to some of our wikis (helpdesk wiki) from our Intranet. Our helpdesk has a wiki where it presents lots of useful information about our IT environment to all our customers. The IT section also has a private wiki for the section only that documents procedures in one place so it can all be searched for information. Many of the other sections in our workplace are also using wikis to share their procedural information and link to documents that their section should be able to find. Wikis are easier… [cont.]
Answered by ecocath - Tue Apr 15 09:42:20 2008
From Yahoo Answer Search: 'web applications'
Tue Jul 14 20:52:43 2009 [ refresh local cache ]
[Hide]▼
Zannel Partners With Country Superstar Keith Urban to Provide Fans ...
SYS-CON Media (press release)
The Keith Urban VIP Pass is built on the Zannel Platform, which enables artists to monetize their premium content via paid mobile and web applications , ...
and more »
SYS-CON Media (press release)
The Keith Urban VIP Pass is built on the Zannel Platform, which enables artists to monetize their premium content via paid mobile and web applications , ...
and more »
MCTS Web png
273px x 560px | 27.10kB
[source page]
Mcts net framework 2 0 Web Applications Certification Training About mcts net framework 2 0 Web Applications Certification
273px x 560px | 27.10kB
[source page]
Mcts net framework 2 0 Web Applications Certification Training About mcts net framework 2 0 Web Applications Certification
Free IT Books: 2310C- Developing Web Applications Using Microsoft ...
ventran
hu, 18 Jun 2009 21:08:00 GM
This five-day instructor-led course will teach introductory-level . Web. developers the fundamentals of . Web application. development and best practices for Microsoft . Web. development technologies, including ASP.NET 3.5, ASP. ...
ventran
hu, 18 Jun 2009 21:08:00 GM
This five-day instructor-led course will teach introductory-level . Web. developers the fundamentals of . Web application. development and best practices for Microsoft . Web. development technologies, including ASP.NET 3.5, ASP. ...
[Hide]▲


