Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to Generate Report
Message
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 1.1
Database:
MS SQL Server
Miscellaneous
Thread ID:
01056066
Message ID:
01056143
Views:
21
Hi Bharat

If I understand your question then there are several ways...

Using query string
response.redirect("mypage.aspx?firstparameter=1&secondparameter=1")
Then in mypage.aspx
dim First as string = request("firstparameter")
dim Second as string = request("secondparameter")
or with session
session.item("firstparameter") = "1"
session.item("secondparameter") = "1"
I am afraid that's VB.NET code but it should translate easy enough...

But maybe your question isn't that simple?

ATB

Chris

>Hi,
>
> I am showing data in DataGrid which spans to many pages. Now I want user to press the print button so that all the data from all the pages can be shown in the simple tabular format from where they can print. For that I allowed them to open the data in a new page, in tabular form, without pages. But how can I pass the parameters within the pages as I have to run the same stored procedure again now from the new page. It requires more than one parameters. Is there any better way also.
>
>Thanks
>Bharat
Chris Maiden
Email
Web
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform