Most voted "client-side" questions
The term "client-side" refers to the part of a web application that runs in the user’s browser. The counterpart of "client-side" is "server-side", i.e., the part of a web application running on the web server.
Learn more…26 questions
Sort by count of
-
16
votes4
answers8320
viewsWhat is the difference between client-side and server-side code in web development?
I’m studying ASP.NET through a book called Professional: ASP.NET 4.5 in C# and VB and at various times the author talks about code client-side and server-side, would like to know the difference.…
-
12
votes6
answers5531
viewsWhy use Javascript if there are so many other technologies to generate dynamic content?
Specialized technologies and programming languages for the Web, such as PHP, have as part of their set of roles, generate dynamic HTML content (the page will be presented by the browser according to…
-
9
votes2
answers874
viewsIs it possible to prevent injection of external resources and requests for greater security?
I understand that we can create and search javascript plugins, analyze the code and make sure that it will not inject anything on the outside page. But supposing there is some library from which…
-
8
votes1
answer975
viewsDo front-end or back-end processing?
In the client-side and server-side separation architecture, it is common to doubt who is responsible for some processing. On the one hand, processing on the client-side can be beneficial for…
web-application server-side single-page-application client-sideasked 6 years, 7 months ago vinibrsl 19,711 -
7
votes2
answers1292
viewsWhat are the differences between client-side and "Rendering" server-side?
Lately I’ve seen a lot of the term server-side rendering, especially with the popularization of some frameworks and libraries, but I still can’t understand what improvements this can bring to a…
-
5
votes1
answer124
viewsAsync methods - return string from UDP
I am developing a code whose goal is to send a package with a string in broadcast and then read the answer (if any), however I want to create a method that just returns the string of the answer. I…
-
3
votes1
answer663
viewsValidation of Client fields in ASP . NET MVC 4
I’m needing to do field validations on a system both on the client side and on the server side, on the server side I’ve already been able to do, but I couldn’t find any way to do client side…
-
3
votes1
answer280
viewsUsing SPA (Single page application) and browser back button
Someone who works with SPA knows the best way to work with the back button of the browser? For example, we have a list of users and the detailing of these users through a click. When we are on the…
-
3
votes1
answer100
viewsCan a desktop program be considered client-side?
Always when I hear/read about server-side and client-side is related to web applications, but these terms can be applied to programs desktop? For example if I have an app that consumes a web-service…
-
2
votes1
answer3282
viewsHow to make a CRUD via REST
Introducing I need to access a web service in PHP via mobile application. I have seen several videos and read many tutorials about Delphi’s REST Client. I even managed to develop a prototype of my…
-
2
votes5
answers801
viewsIs it possible to upload files without using PHP?
I have to make a video upload system, at first, without using the "server side". I wonder if you can do this without php, using Sqllite or Local Storage. I’ve researched several sites and I haven’t…
-
2
votes1
answer772
viewsWhat is the best way to make an AJAX request in Wordpress?
When I make an AJAX request in Wordpress I do it in two ways, but I would like to know which is the best. The two I know are: 1º) You put your function in functions, for example:…
-
2
votes1
answer941
viewsChange page content when clicking on link in Vuejs
I have an email application and I have a side menu with all the mailboxes that will be available to the user. Here’s a screenshot: What I want to do is: Each time I select (click) an item from that…
-
1
votes1
answer136
viewsScrolling area graph when clicking and dragging mouse
I have the following challenge: Create an area chart where the client can drag the areas of the chart (click and drag) and later save this "new view", after the displacement of the areas. The first…
-
1
votes1
answer1192
viewsHow to encrypt and decrypt data to be transmitted via sockets?
I have a program that logs in with my server, however the connection is without any protection. I looked for some ways to protect but it seems that some of them have a pass code on the client, but I…
-
1
votes1
answer206
viewsPrinting on Ruby on Rails
I have the following problem, I need to print data that are generated by my Ruby on Rails application, however, this impression should be made directly in the client’s USB/Serial port. The printer…
-
1
votes0
answers25
viewsPartial with Javascript
If I create a Partial this way below "given as example": <script> //Codigos C# Meus documentos.. //Codigos Javascript... </script> ... and within this partial contain code c#, this…
-
1
votes1
answer762
viewsIs PHP client side feasible?
I develop in PHP and, I would love to do everything only in PHP on dynamic programming issues, but, I know that to do everything I need facing "web" impossible would be without a language client…
-
1
votes1
answer179
viewsHow to Rank in a List, The Most Accessed Table Link
I am creating a dynamic table in Javascript to represent a set of favorite links that will be managed through HTML document. Example document.getElementById('resultado').innerHTML =[…
-
1
votes1
answer608
viewsHow to save JSON data to hard disk? (or access it with javascript)
I am working on an application to study the syntax of languages used on the web (html, css, javascript and etc...), through a "mini-game" of questions and answers, but my problem has been how to…
-
1
votes1
answer39
viewsHow to hide personal data on the front end
When we want to hide some personal data in the back end we use the file .env, and then retrieves this information using process.env.[KEY_NAME], but that only works in the back end because as the…
-
0
votes1
answer186
viewsUsing Ruby on Rails is it possible to perform external functions on the client side?
Example: On the computer that is with the browser accessing the page, with the proper permission, run a function in a DLL installed in it? Complementing: My intention was to use on an intranet, and…
-
0
votes0
answers33
viewsHTTPS Only on client
Hello.I’m starting now on WEB programming, and I came across a question before the website I’m developing aired.As you all know, safety is essential and extremely important for any system.My system…
-
0
votes1
answer352
viewsResolve android.os.Networkonmainthreadexception error in an android application that works as a client to receive images from a server
I’m trying to make an Android app that will fetch an image from the computer. Server-side code (computer) is already implemented and operational. Using UDP, I ask the server to send me an image and…
-
0
votes2
answers59
viewsInsert HTML code in Client-side form without using PHP
Guys I have two external files called header.html and footer html containing headers and footer of a site, with menus and etc. I need to include these external files in the site pages without using…
-
0
votes0
answers69
viewsHow do I keep changes made by the browser console?
Hi, I was looking at the code of some websites on the Internet through the console and making some changes to see what was going on, and it got to the point where I wanted to save all these changes,…