Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6671383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:22:55+00:00 2026-05-26T03:22:55+00:00

I have a website built in ASP.NET 4.0 and currently I have a drop

  • 0

I have a website built in ASP.NET 4.0 and currently I have a drop down box with URLs, a button that goes to that URL and parses out text and then finally a results box with the parsed text.

What I want to do is instead of going to my website and choosing the URL in the drop down box, I want to pass on the parameter as a full URL and have the button go to that and then do its thing. Kind of like a permanent link that I can hand to a user

For instance:

http://localhost:62554/WebSite5/Default.aspx –> http://google.com

google.com gets put into a variable (lets say its MyURL) and the button takes it just like if it were in the drop down box.
**Updated code: Now getting a error 500 at

using (StreamReader objReader = new StreamReader(objRequest.GetResponse().GetResponseStream()))

string newURL;
String url;

protected void Page_Load(object sender, EventArgs e)
{

    //Request.Params.Get("newURL").ToString();
    //string url = Request["newURL"];
    //url = Request.QueryString["newURL"].ToString();
    url = Request.QueryString["newURL"].ToString();

    parseButton_Click(sender, e);
}
protected void parseButton_Click(object sender, EventArgs e)
{

    //MyURL = deviceCombo.Text;
    //MyURL = Request.Params.Get("");
    //MyURL = Request.Params.Get("newURL");
    //MyURL = newURL;
    //string MyURL = Request.Params["newURL"].ToString();

    WebRequest objRequest = HttpWebRequest.Create(url);
    objRequest.Credentials = CredentialCache.DefaultCredentials;
    using (StreamReader objReader = new StreamReader(objRequest.GetResponse().GetResponseStream()))
    {
        originalText.Text = objReader.ReadToEnd();
    }

    //Read all lines of file
    String[] crString = { "<BR>&nbsp;" };
    String[] aLines = originalText.Text.Split(crString, StringSplitOptions.RemoveEmptyEntries);
    String noHtml = String.Empty;

    for (int x = 0; x < aLines.Length; x++)
    {
        if (aLines[x].Contains(filterCombo.SelectedValue))
        {
            noHtml += (RemoveHTML(aLines[x]) + "\r\n");

        }
    }

    //Print results to textbox
    resultsBox.Text = String.Join(Environment.NewLine, noHtml);
}

Any ideas? Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:22:56+00:00Added an answer on May 26, 2026 at 3:22 am

    You can get the URL variable from the Request object.

    string url = Request["newURL"];
    

    Put this wherever you like such as Page_Load

    protected void Page_Load(object sender, EventArgs e)
    {
        string url = Request["newURL"];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have built an ASP.NET MVC 2 website that I am hosting with Rackspace
Hi, I have built a ASP.NET MVC website that uses Membership, this works fine.
Background: I have a website that has been built with ASP.NET 2.0 and is
I have a website that is built in ASP.NET 3.5 & SQL Server 2005,
I have a website built with ASP.NET (3.5) and want add some level of
I have a website which displays a lot of photos, built with asp.net and
I have built a MVC website on IIS6. I used the built-in ASP.NET Security
I have an existing complex website built using ASP.NET MVC, including a database backend,
I have made a MVC application that uses the built-in ASP.NET login functions. It
I have an existing website built on ASP.NET + SQL SERVER. It should move

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.