Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 29th, 2007, 01:51 PM
Authorized User
 
Join Date: May 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default Passing objects between One Page to next page

HI,

I have an HTML table in the First ASP.net page, that needs pass to next ASP.net page using Querystring ?
How i can I do ?

With Regards,
Muralidharan.D

With Regards,
Muralidharan.D
__________________
With Regards,
Muralidharan.D
 
Old July 2nd, 2007, 01:18 AM
Friend of Wrox
 
Join Date: Aug 2004
Posts: 550
Thanks: 0
Thanked 1 Time in 1 Post
Default

Well, passing a complete table in querystring would not be a good approach, I suggest that you try to modify your logic, if you wish, you can share with us your approch so that we may help you in modifying your business logic.

Regards
Mike

Don't expect too much, too soon.
 
Old July 3rd, 2007, 07:48 PM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Well, theoretically, you can pass the data via a query string but as Mike said, that is not a good approach (most browsers limit the amount of characters you can have in the query string anyway).

The first logical question is: are you creating the HTML table in code ala

Table tbl = new Table();
//add rows and cells
[ParentControl].Controls.Add(tbl);

The second question is, do you need the whole table or just the data contained within?

================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for: Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========





Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I Pass Objects to other page in ASP saikrishna186 ASP.NET 1.0 and 1.1 Basics 1 September 11th, 2006 06:14 AM
Transferring Objects from one page to other page. g_vamsi_krish ASP.NET 1.0 and 1.1 Basics 3 August 31st, 2006 11:15 AM
passing values from ASP page to a popup ASP Page astrosmurfboy Classic ASP Basics 3 April 21st, 2004 08:17 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.