Questions tagged [client-side-data]
27 questions
7
votes
1 answer
Best way to store data on the client side - ASP.Net + JQuery
I'm writing an admin form for some fairly complex objects. Its a standard repeater which displays some 'basic' information (name, id etc.) for each object row.
Clicking 'Edit' for a row expands it (using JQuery) to reveal the full horror of all the…

immutabl
- 6,857
- 13
- 45
- 76
4
votes
5 answers
What is the best practice for passing large amounts of client side data to the server?
I have a lot of data on the client side made up of mostly large arrays and I need to get this info back to the server and be able to parse it easily. I'm using jQuery on the front end and PHP (CodeIgniter) on the back end.
Right now I'm just POSTing…

Dan P.
- 1,433
- 1
- 16
- 28
4
votes
1 answer
How to track users without authentication on nodeJS
I developed a mobile web application using nodeJS. All users have an access to data(foods,menus etc) without authentication. They can list products, like them, or mark them as a favorite ..etc What I want is giving them unique IDs (on first visit)…

Orhan Bayram
- 43
- 1
- 3
3
votes
5 answers
How to save form input data to a XML file using Javascript?
I want to save these form inputs in a file (e.g XML) in order to be able to use it later in the form again:

user3860579
- 33
- 1
- 1
- 4
2
votes
1 answer
How to control or edit text that is copied from a web page (for good, not evil reasons)
My web application allows members of the university to lookup and display their university ID number. It displays that number in an agreed upon format 99999-9999 which was picked to help distinguish it from, say, a Social Security Number, and to…

KillerRabbit
- 173
- 1
- 8
2
votes
2 answers
How can I create a client-side database that persist between sessions?
I'm working with HTML5 to create a client-side database using the Lawnchair Javascript library, but when y create a new Lawnchair object what i get is a new local storage, not a new database
var people = new Lawnchair('people');
the problem is…

user528091
- 21
- 2
2
votes
1 answer
Best way to cache client-side data across iron-router routes in Meteor
I'm building a Cordova app that presents CRUD operations around a list of Tickets. The home page presents the list and you can click on any list item for more details about a specific Ticket.
The home page is reached at / and presents a tickets…

Gaurav
- 974
- 9
- 13
1
vote
5 answers
GetElementByID at server side, asp.net?
I have something like that:
1
vote
1 answer
How can I filter a string field in a dataset with a like clause and an umlaut?
Albeit there is some documentation about dataset filtering, the syntax details are only outlined. In my application I want to filter person names with a dataset filter. Normally this works really fast, but I've stumbled over a minor problem…

ventiseis
- 3,029
- 11
- 32
- 49
1
vote
1 answer
Chrome Extension and a Client-Side Database
I'm creating a Chrome Extension that needs to store some data for each user in a database .. for this, I used first Java Servlets to connect to a MySQL database and use it, but it's not very adequat in my case : I want to store the client data in a…

Mayusu
- 91
- 1
- 2
- 11
1
vote
1 answer
Communication between a .Net desktop application and a Silverlight application in browser
We have a .Net application running in a user's desktop and another Silverlight application running in a browser on the same desktop. I need to pass some data from the desktop .net application to the Silverlight client on the browser. Based on the…

Betty Thomas
- 61
- 1
- 4
1
vote
2 answers
In a classic ASP application, is it better to use a session or cookie for cross-page data persistence?
I have inherited a fix on a classic ASP application where we want to store some user session-specific data to persist across page loads/their session, and need a bit of a refresher.
In the past I have simply used Session variables - ie.…

ElHaix
- 12,846
- 27
- 115
- 203
0
votes
2 answers
Store raw data in cookies - good idea or a bad idea?
I want to store a list of recently viewed profiles in a cookie.
I have a site where people enter game character id (World of Warcraft) and can view the character's profile.
Character identity consists of name (unicode, up to 15 characters), server…

THX-1138
- 21,316
- 26
- 96
- 160
0
votes
0 answers
how to get data filled in pdf application dispalyed in angular 5 client side?
I'm able to display fillable pdf application using angular 5 but i'm unable to fetch data or save the file to server along with the data filled.
inside the component:
import * as $ from 'jquery';
code used to bind pdf file in html page
0
votes
1 answer
Exposing server-side state through client-side controls in ASP.net
Hopefully this isn't a redundant question--I'm not really sure how to word it. Let's say I have a list of items on an ASP.net page. That list is selectable in that whenever the user clicks on one, the page does a postback and the server code stores…

pckozub
- 39
- 2