Click here to Skip to main content
Licence CPOL
First Posted 1 Sep 2010
Views 11,093
Downloads 113
Bookmarked 12 times

Unlimited Query string - ASP.NET

By | 1 Sep 2010 | Article
Unlimited Query string Solution for Web Application.

Introduction

Query string is one of the primary parameter passing techniques for Web Application.

Query string has some limitation in terms of query string length; this length depends on the browser.

To handle the query string length limitation, there are few solutions –

  1. using POST instead of GET,
  2. passing by Cookies
  3. Sending query string to the server by AJAX and adding to the session in the first step and fetching the query string from the session using some GUID concepts.

Here I am going to explain a best and stable solution for all the cases.

Background

We have three situations when we need to pass query string to the web page.

  1. Opening a new window (http://msdn.microsoft.com/en-us/library/ms536651(VS.85).aspx)
  2. Showing modal dialog (http://msdn.microsoft.com/en-us/library/ms536759(VS.85).aspx)
  3. Showing the URL in iFrame (http://msdn.microsoft.com/en-us/library/ms537627(v=VS.85).aspx)

Request Maximum Size can be configured on IIS Server configuration for Server side.
http://www.iis.net/ConfigReference/system.webServer/security/requestFiltering/requestLimits
[ Thanks : daveauld - http://www.codeproject.com/Members/daveauld  ]

Using the Code

To solve this problem, I have come up with a simple solution using HttpHandler & Javascript.

What is HttpHandler? Read this - http://aspalliance.com/441
How to create an HttpHandler? Read this - http://support.microsoft.com/kb/308001

This solution contains 2 parts, first one is launching/showing the URL using the WindowManager.Js script object, and second part for passing the query string to the web page from HttpHandler.

The below work flow diagram shows internally how it’s working.

How to Implement

Attached sample code contain 2 files, first one is the script file WindowManager.Js, Second one is HttpHandler source code – PageTransfer.CS.

Steps to integrate:

  1. Web.Config Changes.
    Add this entry under system.web\httpHandlers Node.
  2. <add verb="*" path="PageTransfer.axd" 
        type="ApplicationFrameWork.PageTransfer, ApplicationFrameWork"/>
    
         <!— type="ApplicationFrameWork.PageTransfer, AssemblyName"  -->
  3. Add these 2 files in your project folder.
  4. Include the script in your aspx page.
  5. <script src=" WindowManager.js" language="javascript"></script>

Let pass your unlimited query string to your pages.

<html>
<head>
<script src=" WindowManager.js" language="javascript"></script>
</head>
<script language="javascript">
      function OpeniFrame()
{
      WindowManager.LoadFrame("iFrameName", 'WebForm1.aspx', 
          'name=elayaraja&Your=UnlimitedQueryString', 'Your Title')
}

function OpenWindow()
{
      WindowManager.OpenWindow ('WebForm1.aspx', 'Your Title','400px','500px',
          'name=elayaraja&Your=UnlimitedQueryString')
}

function OpenModalWindow()
{
      WindowManager.OpenModalWindow('WebForm1.aspx', 'Your Title','400px','500px',
          'name=elayaraja&Your=UnlimitedQueryString')
}
 
</script>
<body>
    <form id="form1" runat="server">
    <div>
      Open Window <input type=button value="Open" onclick="OpenWindow()" />
      Load Frame Page<input type=button value="Frame" onclick="OpeniFrame()" />
      Open Modal Dialog<input type=button value="Frame" onclick=" OpenModalWindow()" />
 
    </div>

    <iframe id="iFrameName" width="100%" height="300px" frameborder=1>
    </iframe>

    </form>
</body>
</html>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

sambasivam elayaraja

Architect
iSOFT R&D Pvt Ltd
India India

Member

Follow on Twitter Follow on Twitter
Currently working as Technical Architect at iSOFT R&D Pvt Ltd,Chennai.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalinteresting PinmemberPranay Rana0:04 22 Dec '10  
GeneralMy vote of 1 PinmemberOakman10:09 6 Sep '10  
GeneralNot bad, but... PinmemberGregory.Gadow12:03 1 Sep '10  
GeneralRe: Not bad, but... Pinmembersambasivam elayaraja20:00 1 Sep '10  
GeneralRe: Not bad, but... PinmemberGregory.Gadow3:22 2 Sep '10  
GeneralRe: Not bad, but... PinmemberOakman10:03 6 Sep '10  
GeneralBad Programming PinPopularmemberCorey Fournier8:21 1 Sep '10  
GeneralRe: Bad Programming PinmemberMunim Abdul9:34 1 Sep '10  
QuestionRe: Bad Programming Pinmembersambasivam elayaraja20:14 1 Sep '10  
QuestionRe: Bad Programming Pinmembersambasivam elayaraja20:15 1 Sep '10  
AnswerRe: Bad Programming PinmemberEric Xue (brokensnow)23:25 3 Sep '10  
Generalplease format the article Pinmember ThatsAlok 18:33 31 Aug '10  
GeneralLength Limitations PinPopularmemberdaveauld7:43 31 Aug '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 1 Sep 2010
Article Copyright 2010 by sambasivam elayaraja
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid