Questions tagged [request.querystring]
201 questions
-1
votes
2 answers
Try/Catch Block - Exiting from try code
I have this C# code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.OleDb;
using System.Data;
public partial class UpdateArticle :…

Nave Tseva
- 868
- 8
- 24
- 47
-1
votes
1 answer
How to pass the value using keypress event of asp textbox?
Hi i am writing asp textbox controls. I want my pass the id using keypress event. Below code i am using but i m getting error.
The server tag is not well formed.
.aspx page

Prince Antony G
- 932
- 4
- 18
- 39
-2
votes
1 answer
How to send/receive image in wordpress web services
I just wrote web services for wordpress like login, register, pass update, etc...
Now I want to user can upload images from iOS device and send this via web services(query string). I am not sure how to do this.
For login I just create a query string…

Manish Negi
- 250
- 4
- 18
-2
votes
1 answer
How can I parse a string of an array into an array?
{scenarios: "[{purchasePrice:11,downPayment:1,term:30,rate:1}]"}
That's my object. I want to turn the value of scenarios into the array its trying to be from the string it is.
Is there a quick tool so I don't have to hack it together from .splits?

Aron Greenspan
- 115
- 1
- 6
-2
votes
2 answers
taking safe input from url and making my input hacking safe
I have the following method in my php CRUD class:
//secure search method
function secureInput($ary = array()){
$this->connect();
$securedArray = array();
//print_r($ary);
foreach($ary as $val){
…

Abdul Rahman
- 1,669
- 4
- 24
- 39
-3
votes
2 answers
How to get the value of a Query String which includes an ampersand &?
I need to retrieve the value of a query string for a department using .net c# but as some of the department names include an '&' as soon as it is read it stops after the &
www.example.co.uk/default.aspx?dept=IM&T
Label1.Text = "The Department is -…

KlydeMonroe
- 197
- 2
- 4
- 18