0
votes
1answer
33 views

can vb.net read query strings with field[] format?

I'm trying to navigate through not being able to read multidimensional arrays with JavaScriptSerializer. I think there's a workaround if I can do what's in this answer ...
0
votes
1answer
68 views

read JSON multidimensional array from query string without keys (values only)

I've found out for myself how to parse JSON effortlessly with a WebMethod putting this in the beginning: <System.Web.Services.WebMethod()> _ ...
0
votes
1answer
781 views

Response.Redirect using query string

Okay so I've just written my own "add a book to the database" ASP.net page that looks like so: <div class="addbook"><br />If you feel that we&#39;ve forgotten a book that you love, ...
0
votes
2answers
41 views

How to put another line of string (still in one phrase) in vb.net?

I want to put or cut my string into couple of lines. How could I do that? this is the line of codes I want to cut (but they are still in string). sql = "INSERT INTO tblClientInfo (genClientID, ...
0
votes
1answer
145 views

QueryString Encryption and Related Characters Problems

I'm using a 64base data encryption function to Encrypt and Decrypt emil addresses sent in links and back in QueryString using : Encrypt(txtEmail.Text).ToString // Which generate something like ...
1
vote
3answers
132 views

Forward a QueryString to another Server

I have a webapp that accepts a messageid and status as a QueryString from an external server. I am migrating the webapp to a new server, but I need the new server to forward the QueryString to the old ...
0
votes
2answers
268 views

asp.net querystring formatting

How can i send special characters in a querystring? Like: thankyou.aspx?data=GQH/FUvq9sQbWwrYh5xX7G++VktXU5o17hycAfNSND8gt8YbbUaJbwRw The ++ gets taken out when i do this: Protected Sub ...
1
vote
1answer
193 views

Request.QueryString “Index was outside the bounds of the array.”

As of now, I'm sending only an empty array through the query-string. selectPONumber=[] Have no idea why I'm getting this error. The stacktrace points the Next on this. If ...
0
votes
2answers
153 views

Read Array From Query String?

Can't seem to find an answer for this anywhere. I'm using Alex K.'s solution to send the array in the query string, but I don't know how to break down the array in VB.NET. No variation of this Dim ...
1
vote
3answers
1k views

Passing user input values through Querystring without code behind

I'm trying to generate a report through my site. Default.aspx has a dropdownlist and 2 textboxes. The report (which is generated on a different page) must use all of the values from these 3 controls ...
0
votes
3answers
874 views

how to pass and retrieve Html tags via querystring

Default.aspx <script type="text/javascript"> $(function() { $("#add_questions").click(function() { var question = $("#wmd-output").val(); var option1 = $("#option1").val(); var option2 = ...
0
votes
1answer
164 views

Decode and RequestQueryString

My URL is www.domainname.com/default.aspx?l=en&amp;t=32600483-1618-4f09-9a86-c12de4dafc7b I would love to read the QueryString value of t. So i can parse it as GUID. Unfortunatelly that ...
0
votes
0answers
313 views

Passing querystring path to pinterest doesn't work [closed]

I'm having trouble binding the querystring image value from my gallery to the pinterest button. For some reason the querystring value being passed is defaulting to '1' even though the value I'm ...
0
votes
1answer
311 views

Decoding Encrypted Query string

I am using the method described in the following LINK and I am using the following code to encrypt: 'Page1.aspx Protected Sub butEncrypt_Click(sender As Object, e As EventArgs) Handles ...
1
vote
3answers
741 views

use query string for href

Should be simple, but can't figure out how to do it. Want: <a href="/sites/folder/page.aspx?variable=123456">Test</a> By: <a href="/sites/folder/page.aspx?variable=<% ...
1
vote
3answers
184 views

Looks like a query string, but won't act as a query string

I am working with VB in asp.net, The basic problem is, I want to pair up the elements in a string, exactly like request.QueryString() will do to the elements in the query string of the web page. ...
0
votes
0answers
208 views

Server.UrlEncode doesnt function with '% %'

I have a search page, the result is exported to Excel "window.location.href='./person_export.aspx?filteredSQL=" & Server.UrlEncode(strSQL) & "';" I use a button(onClick javascript code is ...
4
votes
2answers
1k views

Value of 'String' cannot be converted to Type 'T'. Generic function for getting query strings?

I've got this function: Public Shared Function GetQueryStringValue(Of T As Structure)(ByVal queryStringVariable As String) As T Dim queryStringObject As Nullable(Of T) = Nothing If ...
0
votes
1answer
348 views

Keep ASP.NET ViewState without being passed via QueryString

I have a form with its method being "get" that passes the variables and their values to the query string, respectively. However, it also passes the viewstate variable in the query string. Now, I have ...
0
votes
2answers
131 views

Defining a variable as a url in a page source using VB.net?

Im writing a program in VB.net that consists of three main steps: STEP 1: Display the source code of a webpage that is streaming a movie on it in textbox1. STEP 2: highlight the URL to that movie in ...
0
votes
2answers
481 views

Creating multiple querystrings from drop down lists - Could be 1, 2 or 3 querystrings. How do I do it?

I have a gridview which can be filtered from one or more values in a querystring. That all works great: e.g. "?subject=Maths&authorName=Bond_James&type=Magazine" The values passed to the ...
0
votes
1answer
110 views

compare the data passed in query string

sir i m working on a project and i want to pass a value in query string and redirect it to next page .....ok now on next page i want to make a check on this if the value of querystring is equal to a ...
-1
votes
2answers
3k views

How to hide asp.net querystring displayed in address bar as default.aspx?id=2&name=sanjay [duplicate]

Possible Duplicate: Removing a querystring from url in asp.net How to hide asp.net querystring displayed in address bar as default.aspx?id=2&name=sanjay
-1
votes
2answers
994 views

How to encrypt query string in vb.net?

How to encrypt query string in vb.net ? http://localhost:2486/volvobusesindia/passenger_info.aspx?from=Delhi&to=Manali&journey=21-Nov-2010
0
votes
1answer
462 views

Passing a database value to a front-end querystring

This may be a simple question, but I'm trying to call a a value from table in my back-end SQL Server database and pass it through a querystring in the URL. For example: I'm building a mobile web ...
0
votes
2answers
122 views

Querystring does not return all values

I've searched all over the web for an answer and I can't see anybody with the same or similar problem (which surprises me certainly, so I certainly suspect it's me somehow). When I do a ...
1
vote
3answers
537 views

Need to pass a querystring variable in MVC, so i can use it with jquery?

I would like to create this url blah.com/preview?h=yes so i can do this <% if request.querystring("h") = "yes" then %> jquery stuff <% else %> don't do jquery stuff <% end if %>
1
vote
1answer
514 views

Special character into querystring .NET

I need to send the follow querystring: http://prod.intranet.siemens.com.br/drvs/index.aspx?page=2&pag=4&varpatch=%20C:\Documents%20and%20Settings\OPE253\My%20Documents\Ca$@#! Then i try to ...
3
votes
1answer
900 views

get data from a querystring

i have this querystring that shall open up my page. http://www.a1-one.com/newpage.aspx?email=er@old.com&stuid=123456 Now when this page loads, on page_load, I want to pick up email and stuid in ...
1
vote
6answers
334 views

Inserting variables into a query string - it won't work!

Basically i have a query string that when i hardcode in the catalogue value its fine. when I try adding it via a variable it just doesn't pick it up. This works: Dim WaspConnection As New ...
0
votes
2answers
161 views

querystring picking up last row in table and not specified row. vb.net

i have created a table with 2 fields in vb.net as follows - Do While SqlDR.Read() TR = New HtmlTableRow TD = New HtmlTableCell ...
0
votes
2answers
761 views

querystring to a hyperlink in vb.net or maybe another solution

I am new to vb.net. Let me explain the two aspx pages that i have. First one is a table with results populated from the sql server backend. The first holds the "FirstName". I want this to have a ...
0
votes
1answer
588 views

vb.net sending value from one aspx to another

this is my vb.net code - in the subroutine i have - Private Sub xxx() Sqlstr = "SELECT * FROM table" ExecuteNonQuery(Sqlstr) SqlCmd = New SqlCommand(Sqlstr, SqlCnn) SqlDR = ...
0
votes
1answer
447 views

QueryString From Shared Function

I'm trying to get a query string from a shared function in a code-behind model using VB.NET. You have to use HttpContext.Current.Request.QueryString("Query") in order to get it from a shared ...
1
vote
6answers
2k views

ASP.NET Querystrings

Hey guys... I got this code in order to build an url for the link using a querystring from the current page. The problem is.... It doens't work. Any suggestions? <asp:hyperlink ID="link1" ...
0
votes
3answers
725 views

How to filter out some vulnerability causing characters in query string?

I need to filter out characters like /?-^%{}[];$=*`#|&@'\"<>()+,\. I need replace this with empty string if it is there in the query string. Please help me out. I am using this in ASP pages.
6
votes
8answers
15k views

<> And Not In VB.NET

I'm having the exciting task of finding out about VB.NET's <> and Not operators. Not - I'm assuming by my small use of it - is the functional equivalent of ! in languages such as C# and ...
1
vote
5answers
176 views

How do I access the variables from urls that come from the GET method in ASP.net?

Asp.net has turned out to be alot easier to use than PHP (so far). However, I have been searching for a while and simply cannot figure this out. How do I get the variables that are contained in the ...
0
votes
8answers
5k views

What is the best alternative for QueryString

We heard a lot about the vulnerabilities of using QueryStrings and the possible attacks. Aside from that, yesterday, an error irritated me so much that i just decide to stop using QueryStrings, i was ...
0
votes
5answers
15k views

Looping through a request.querystring in VB.NET

I am trying to loop through a query string and pull out certain values as in: ?ProductID=1234&ProductID=4321&Quantity=1 For each value next to ProductID I want to execute some logic. But I ...