Which of client-side server side web-programming is better? [closed] - client-side

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Which of client-side or server-side web-programming produces the best results for websites?
Is the following a correct analysis of some major web-programming platforms?
ASP - server side
JSP - server side
Coldfusion - server side
Javascript - client side
PHP - server side
What sort of websites are better done using client-side, and what websites are better done using server-side?

There is no answer to the "which is better" question, because server side programming and client side programming are very different.
Your questions so far indicate analysis paralysis where you're fixating on the tools to solve your problem rather than the problem itself. Pick something (it doesn't matter what, we're here to help) and learn it!

Related

The whole idea behind one ASP.NET [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What is the whole idea behind One Asp? Is it something like we will be able to develop applications for all asp.net framework without any target framework oriented development using VS IDE. How it can change the usage of ASP.NET in the future?
.Net is a framework. means simply it is a collection of large library to solve different programming needs when a programmer wants to write a software. A library is not of books but of small different collection of code . ASP.net is a .net framework. means one who knows ASP programming then ASP.NET is an extention of ASP in .net framework.
It is mainly used for:
Improved Performance and Scalability
Enhanced Reliability
Easy Deployment
New Application Models
Developer Productivity

How to do browser integration using c++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am developing a download manager for Linux and i want to integrate it into firefox, chrome, opera. I am using QT. The download managers like idm, dap integrate into browsers and become somewhat default downloaders for these browsers. Is there any way other than using add-ons like flashgot or download assistant to do so.
You'll need a separate mechanism for each application to direct the download into your application, or get the user to copy the link back out, so plugins are your best bet.
Or do something entirely crazy such as monitor all the traffic and snare downloads based off clever filtering, but then you've got the probable side effect of breaking all HTTP requests.

Database connectivity ASP.net? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I've googled this question repeatedly, but have not found a great answer anywhere. I'm sure someone familiar with ASP.net could answer this pretty easily. What is the best way to connect to a database through ASP.net? LINQ to SQL? Entity framework? I'm not able to find an overview of the different methods to connect or of the place that these technologies have in ASP.net. An explanation or a pointer to a great link would be appreciated. Thanks.
This is, unfortunately, a question without a clear cut answer as it depends on your application need, flavor of database you need to interact with, standards currently in place at your target deployment environment and application design considerations.
Most often relational database access is accomplished in asp.net through either direct or indirect usage of ado.net. If you plan on adhering to common, current practice you should look into using an ORM to speed development time, namely either Entity Framework or NHibernate. (Linq to SQL was great for SQL Server but has been eclipsed by EF.). My preference is NH.
Sorry for the somewhat subjective answer, but this is unintentionally a subjective question.
Good luck!

java server connection to flex application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Ho to connect the java server to flex application?
Is Blazeds plays a role here (or) Remote services?
you can connect a Java BackEnd in more then a couple of ways
you can use BlazeDS and thus applying AMF to your application and binary communication between the two.
you can also work with WebServices and move Json/XML back and forth from the server to the client and vice versa.
This is a great link if you want to learn a bit about BlazeDS
http://www.adobe.com/devnet/livecycle/articles/blazeds_gettingstarted.html

Converting vb.net into a web application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I have written a desktop application in vb.net. Now I need to convert it into a web application in asp.net. Can you please suggest how I might proceed?
What you're asking is far more complicated than you think it is. Take this as an opportunity to learn ASP.Net, and web applications in general. Implement the web app from scratch (there are many good books on the subject), using your desktop app as a guide.

Resources