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 853183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:43:05+00:00 2026-05-15T07:43:05+00:00

I have a page www.senderdomain.com/sender.aspx , from which i need to write a string

  • 0

I have a page http://www.senderdomain.com/sender.aspx, from which i need to write a string to another page in other domain http://www.receiverdomain.com/receiver.aspx

In sender.aspx i have written

Response.Write("Hello");
Response.Redirect(Request.UrlReferrer.ToString());

It gets redirected to respective receiver.aspx page, but I am not sure how to get the text “Hello” in receiver.aspx page. Can any pl help on this?

  • 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-15T07:43:06+00:00Added an answer on May 15, 2026 at 7:43 am

    It seems you have a value on Sender.aspx that you need to display in receiver.aspx. This is how you can do it.

    //On Page_Load of sender.aspx 
    
    Session["fromSender"] = "Hello";
    Respone.Redirect("receiver.aspx");
    Response.End();
    
    //On Page_Load of receiver.aspx 
    
    if(!string.IsNullOrEmpty(Session["fromSender"].ToString()))
        Response.Write(Session["fromSender"].ToString());
    

    EDIT

    In case of change in domain, immediate easy way is to pass the value in query-string.

    //On Page_Load of sender.aspx 
    
    Response.Redirect("http://www.receiverdomain.com/receiver.aspx?fromSender=Hello");
    Response.End();
    
    //On Page_Load of receiver.aspx 
    
    if(!string.IsNullOrEmpty(Request.QueryString["fromSender"].ToString()))
        Response.Write(Request.QueryString["fromSender"].ToString());
    

    You may observe that the code pattern remains the same and container that is used to transfer the value changes from Session to QueryString.

    EDIT2

    If security is a concern with you in this case and you don’t wish to expose the value ["Hello"], then here comes another way that can help you. In this solution we will first redirect the page to receiver and then from receiver it shall ask for the value to sender. So first we’ll write the code for receiver.

    //On Page_Load of receiver.aspx 
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            //Remember to use System.Net namespace
            HttpWebRequest requestToSender = (HttpWebRequest)WebRequest.Create("http://www.senderdomain.com/sender.aspx?cmd=getvalue");
            HttpWebResponse responseFromSender = (HttpWebResponse)requestToSender.GetResponse();
            string fromSender = string.Empty;
    
            //Remember to use System.IO namespace
            using (StreamReader responseReader = new StreamReader(responseFromSender.GetResponseStream()))
            {
                fromSender = responseReader.ReadToEnd();
            }
            Response.Write(fromSender);
            Response.End();
        }
    }
    

    And in the sender.aspx

    //On Page_Load of sender.aspx 
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            if (!string.IsNullOrEmpty(Request.QueryString["cmd"].ToString()))
            {
                string cmd = Request.QueryString["cmd"].ToString();
                if (cmd.Equals("getvalue", StringComparison.OrdinalIgnoreCase))
                {
                    Response.Clear();
                    Response.Write("Hello");
                    Response.End();
                }
            }
    
            Response.Redirect("http://www.receiverdomain.com/receiver.aspx");
            Response.End();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.