Link to home
Start Free TrialLog in
Avatar of introlux
introluxFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Passing variables via ASP.Net c#

Hi,

I have 6 variables that I am needing to pass through to the next page. They are all a string type. All 6 variables are loaded into text boxes. I need these variables to pass through to the new window (new aspx page) that is opened after a button click, which will perform an action with the chosen variables.

How is this possible?

Any help will be appreciated.

Regards,

introlux
Avatar of introlux
introlux
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

Note instead of variables it also be called parameters.

Im just trying to pass through data basically.
Hello introlux,

As you are opening new window then the simplest method would be to include the values in the querystring of the URL used to open that new window. You can achieve this relatively easily in the javascript used to open the new window.

<script type="text/javascript">
function openNewPage() {
 var baseUrl = '/mynewpage.aspx?';
 var qsItem1 = 'Variable1=' + document.getElementById('<%= MyTexbox1.ClientId() %>').value;
 var qsItem2 = 'Variable1=' + document.getElementById('<%= MyTexbox2.ClientId() %>').value;
 var qsItem3 = 'Variable1=' + document.getElementById('<%= MyTexbox3.ClientId() %>').value;
 var qsItem4 = 'Variable1=' + document.getElementById('<%= MyTexbox4.ClientId() %>').value;
 var qsItem5 = 'Variable1=' + document.getElementById('<%= MyTexbox5.ClientId() %>').value;
 var qsItem6 = 'Variable1=' + document.getElementById('<%= MyTexbox6.ClientId() %>').value;
 var finalUrl= baseUrl + qsItem1 + '&' + qsItem2 + '&' + qsItem3 + '&' + qsItem4 + '&' + qsItem5 + '&' + qsItem6;
 window.open(finalUrl);
}

Then just use onclick="openNewPage();" as the event handler in your button.

Regards,

TimCottee
ASKER CERTIFIED SOLUTION
Avatar of Faizan Sarwar
Faizan Sarwar
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You could also submit the form to a new window which would probably be the best way of handling it.
You would need to set the form target as a new window or a popup which you could generate with JavaScript.
You would then retain the viewstate etc.
My problem I am having is that I am trying to a download of a .ICS file to save in a new window. I have the question listed here:
https://www.experts-exchange.com/questions/23871381/File-download-prob-ASP-Net-c.html

As I have other functions working, everything seems to stop because of the file download. That is why I am thinking of passing the values across to a new page and then creating the .ICS file, but seems to have failed because I cannot get the page to be opened in a new window + executes the file save as dialogue box is displayed.

Regards,

introlux
I have answered on your other page in relation to that question.

However in relation to this, I would say the best method would probably be to change the forms target attribute to _new via JavaScript or ASP.NET code.
I believe this is the cleanest method.

Thanks