Questions tagged [getparameter]

135 questions
0
votes
0 answers

Redirect to video on YouTube to comment the video

I have iframes of videos from YouTube and I want redirect users to comment these videos in YouTube. Is there leave comment redirection on YouTube? I could switch off autoplay only. Actually I started work on commenting from my website. But I need to…
0
votes
2 answers

Purpose of tilde delimited values in URL fragment instead of GET params

I came across an unusual URL structure on a site. It looked like…
Orun
  • 4,383
  • 3
  • 26
  • 44
0
votes
1 answer

Populate VueSimpleSuggest from URL param on page load

I have this VueSimpleSuggest component in my Vue JS app:
Matt W
  • 11,753
  • 25
  • 118
  • 215
0
votes
1 answer

Passing value from zend form to another action

i am using zend framework and i'm still confuse about passing value from zend_form to another action. let's say we have a guestbook, you fill your $name and $message in it, then after we click submit, the success page will say "thank you $name" .. I…
0
votes
0 answers

Htaccess URL rewrite with get parameters

so I've recently changed my website's file structure a little bit and now need to redirect my old URLs to the new ones. This is what the old URLs looked like:example.com/script?id=1&title=TitleHere the script.php is now in a sub-folder with the name…
0
votes
1 answer

301 redirect from URL with GET-parameters to the homepage

I have an old website with Joomla 1.5. It has some strange links with GET-parameters, like…
0
votes
1 answer

extjs4 store addes get params in the url

i'm using extjs4 store In xhtpp calls it shows the http://localhost/home_dir/index.php/questions/content_pie?_dc=1312366604831&hi=&page=1&start=0&limit=25 This is the store code var content_type_store = new Ext.data.Store({ proxy: new…
nani1216
  • 324
  • 1
  • 10
  • 28
0
votes
1 answer

How do I get the id from a post in a function in react-navigation v5 like this?

I'm trying to get the id for the post that I used to get using react-navigation v4 like this: This is my index Screen 1import React, { useContext } from 'react'; 2import { View, Text, StyleSheet, FlatList, Button, TouchableOpacity } from…
user11240162
0
votes
1 answer

Django How to get GET parameters in template

I'm working on a django project. I'm wondering how to get GET parameters in template so that I can make corresponding tab active. I tried the code below, but it didn't work.
user15256253
0
votes
1 answer

What's the appropriate Response Code for a Pagination API using a GET Request with page parameters, where the parameters produce no records?

I have developed a Web Interface for a db. The db and Web Interface are for my own use in my hobby running on my private intranet. Currently the db has 1800+ records which is going to increase with usage. Ver 1 of the Web Interface listed all…
0
votes
1 answer

Receive a parameter between screens React-Native

I have send a parameter to a screen like that: var states = [ {label: "happy", value: 1}, {label: "sad", value: 2}, {label: "angry", value: 3}, {label: "relaxed", value: 4} ]; export default class App extends Component { state = {…
0
votes
1 answer

How to get parameters from CloseableHttpResponse

I want to get the individual parameters from the server response, for example I want to get the value of "access_token", so in this case: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxx", what can I do? void…
Ardito ITA
  • 19
  • 4
0
votes
1 answer

Servlet request.getParameter() returns null

I have read all the questions about this here, but I still do not have any progress. I want to pass the value from the input field to my servlet, but the servlet's request.getParameter returns null, instead of what is inputted. Here is my…
Programmer2B
  • 552
  • 3
  • 14
0
votes
1 answer

request.getQueryString not null but request.getParameter(paramname) is null

I have a problem with request.getParameter(paramname). It returns null but when I check StringQuery value, I see everything normal. System.out.println("StringQuery= "+getRequest().getQueryString()); It writes on console StringQuery=…
Arif K.
  • 45
  • 7
0
votes
2 answers

Send JSON Data From JavaScript to a Servlet

... I am experiencing an anomaly that I do not understand why. The scenario is as follows: 1.- From JSP, using JS, I send data in JSON format to a servlet. JSON: "{'ORDER': '1', 'DATE': '06-01-2018', 'TIME': '07:06:51', 'BOUCHER': '208896.0',…
Chalie
  • 1
  • 2
1 2 3
8 9