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

  • SEARCH
  • Home
  • 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 8630451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:04:04+00:00 2026-06-12T09:04:04+00:00

I am coding a Authorisation Management Module with c#. The credentials will be extracted

  • 0

I am coding a Authorisation Management Module with c#. The credentials will be extracted from the http header.
My problem is :
I only have the definition of how the http header will look like(txt file). So I need to prepare the header in the code for test, (adding keys and values to the header in default.aspx) :

Response.AppendHeader("contractualData", "03346-b0-t-vg");
Response.AppendHeader("Location", "Default.aspx");
Response.Redirect("page2.aspx");

and than when I read the header in page2.aspx pageload with

Request.Headers["contractualData"];

I cannot see the newly added keys and values.(I can see it is there in response header with IEWatch, but I cant read it with request.headers. I have also tried with Response.AddHeader or Response.Headers.Add. Same behaviour!) What should I do?

In general, how can I prepare a custom header and test my code with that header?

  • 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-06-12T09:04:05+00:00Added an answer on June 12, 2026 at 9:04 am

    I found a solution. Creating a request header and posting it. The following code works :

    protected void Page_Load(object sender, EventArgs e)
    
            {
    
    
                string path = Request.Url.Scheme + "://" + Request.Url.Host + ":" + Request.Url.Port + "/";
    
                myRedirect(path + "TestRedirectTo.aspx", "test", "testValue");
    
            }
    
            protected void myRedirect(string url, string headerName, string headerValue)
    
            {
    
                Response.Clear();
    
                System.Net.WebRequest request = System.Net.WebRequest.Create(url);
    
                request.Headers.Add(headerName, headerValue);
    
                System.Net.WebResponse response = request.GetResponse();
    
                System.IO.StreamReader sr = new System.IO.StreamReader(response.GetResponseStream(), System.Text.Encoding.Default);
    
    
                string content = sr.ReadToEnd();
    
                sr.Close();
    
                Response.Write(content);
    
                sr.Close();
    
                Response.End();
    
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Coding footer naively, if there's not enough content, then there will be empty space
While coding python I'm using only 2 spaces to indent, sure PEP-8 really recommend
Coding Language: C# Framework: .NET We have built a software, which among many other
When coding up Ajax calls in ASP.Net MVC we have a lot of options
This coding i got from here. I get error in log cat view like
I am coding a site in PHP that will allow a user to view
I have implemented a C2DM client that requests the registration id from C2DM server.
Coding standards in place mean I do not have an option of using ajax
When coding up, say, a registration form from scratch, does it make sense to
Hello I have a problem with my connection string below: <configuration> <connectionStrings> <add name=ApplicationServices

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.