---
title: "How to get query string with multiple param"  
description: "How to get query string with multiple param"  
author: "nithersh ankugan"  
published: 2013-02-11  
updated: 2013-02-11  
canonical: https://www.mindstick.com/forum/585/how-to-get-query-string-with-multiple-param  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# How to get query string with multiple param

Hi!

My [web application](https://www.mindstick.com/articles/13069/progressive-web-application-pwas-all-you-need-to-know-about) [URL](https://www.mindstick.com/forum/436/url-redirection) as below

http://www.xyz.com?refurl=/product/info/pList.aspx?pID=1&pQ=Product1&pPrice=$147

I want to get all [parameter values](https://www.mindstick.com/forum/159230/is-default-parameter-values-supported-in-java) from URL. How it is possible

Please help me!

Thanks in [advance](https://www.mindstick.com/blog/33258/jee-mains-and-jee-advance-exams)

## Replies

### Reply by AVADHESH PATEL

Hi Nithersh!\
You can try this way \
Uri uri = new Uri(@"http://www.xyz.com?refurl=/product/info/pList.aspx?pID=1&pQ=Product1&pPrice=$147"); string query = uri.Query; \
\


---

Original Source: https://www.mindstick.com/forum/585/how-to-get-query-string-with-multiple-param

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
