473,625 Members | 3,201 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Call to 3rd page from code behind

10 New Member
Hi all.

I want to accomplish the following.

protected void LinkButton2_Cli ck(object sender, EventArgs e)
{

Label1.Visible = true;
}
Aug 24 '07 #1
7 996
vinci
62 New Member
Hi all.

I want to accomplish the following.

protected void LinkButton2_Cli ck(object sender, EventArgs e)
{

Label1.Visible = true;
}
i guess u want to redirect to the 3rd page..

u can do so by doing this:

Expand|Select|Wrap|Line Numbers
  1. Response.Redirect("page3.aspx"); //include this in the event click
Aug 24 '07 #2
darkcode
10 New Member
Hi thank you for your answer.
I want something similar to response.redire ct but I don't want the user to see this "new page" as it should just be called in the code behind to send some data to a different server.

Server 1 contains a webpage, when a user makes a certain choice on this webpage, information is passed on to Server 2 to store some information in a log. (Server 2 is old and uses asp 2.0 pages so they only accept querystrings as input)
The user should be unaware of the call to server2 so it should be something like server.execute, but this dosn't seem to handle calls to different servers (Domains)

All that is required is that the server makes a simple http request.. hmmm
Aug 24 '07 #3
vinci
62 New Member
Hi thank you for your answer.
I want something similar to response.redire ct but I don't want the user to see this "new page" as it should just be called in the code behind to send some data to a different server.

Server 1 contains a webpage, when a user makes a certain choice on this webpage, information is passed on to Server 2 to store some information in a log. (Server 2 is old and uses asp 2.0 pages so they only accept querystrings as input)
The user should be unaware of the call to server2 so it should be something like server.execute, but this dosn't seem to handle calls to different servers (Domains)

All that is required is that the server makes a simple http request.. hmmm
i see.. u have two different server... also do you have also two different web app? lets say WebApp1 send info to WebApp2? or u have 1 Web App and involved is webPage1 and webPage2,,,, so webPage1 send info to webPage2???

sorry, because i still dont understand what u are trying to do....

tnx!
Aug 24 '07 #4
darkcode
10 New Member
Hi

Yes, it's two different webb apps

I think I can use this http://authors.aspalli ance.com/stevesmith/articles/netscrape2.asp

that should make a request to the second server.. and if I don't dispaly the data from that server the user of app 1 should not be aware that info have been sent to app 2
Aug 24 '07 #5
Atli
5,058 Recognized Expert Expert
Check out my response in the duplicate thread.

Please do not double post your questions.
Read the Posting Guidelines before posting.
Aug 24 '07 #6
darkcode
10 New Member
I found the solution with these two lines of code

WebClient myClient = new WebClient();
myClient.Downlo adString(url);

but it's a bit slow as the user have to wait for the call to be made..
anyone know anything about how to put these two lines in a separate thread?
Aug 24 '07 #7
Shashi Sadasivan
1,435 Recognized Expert Top Contributor
Cool...
this is what i was searching abt 4 months ago.
this is the site you need ... :)
http://www.codeproject .com/csharp/AsyncMethodInvo cation.asp
Aug 24 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

8
4824
by: Jade | last post by:
I saw some web page saying I could do it this way in javascript: var iNumber = <%#publicvarname publicpropertyname %> but it doesn't seem to work. I have this piece of code here in javascript: <script language="javascript"> var sessionServer = "<%#jsTestServer%>"; alert(sessionServer); </script>
1
5313
by: Nevyn Twyll | last post by:
I have a DataList; in the DataList's , I have a LinkButton and a few listboxes. When the LinkButton is pressed, I need to get the ID of the selected item in one of the Listbox controls. Then I want to launch another web page in a seperate window, using that ID. In the header of the web page, I have a javascript function LaunchMyWindow(iID) that launches that window. For a normal LinkButton Control, I could just use
6
11276
by: martin | last post by:
Hi, I am a web page and a web user control. My web user control is placed in my web page using the following directive <%@ Register TagPrefix="uc1" TagName="Header" Src="WebControls/Header.ascx" %> The web user control contains the following server controls
1
1399
by: Hartmut Schroth | last post by:
Hi, is it possible to call a Windows function from VB code behind an aspx page? Shell seems not to work?? Task: I want to execute an SQL script for SQL Server and want to avoid to be forced to write a very complicated stored procedure (with all the dynamic SQL problems and ....), as I have a (generated) script, that is working quite fine. Thanks for help in advance Regards
6
12275
by: grist2mill | last post by:
I want to create a standard tool bar that appears on all pages that is a control. The toolbar has a button 'New'. What I wolud like when the user clicks on 'New' depends on the page they are on. I would like to do this by defining a NewFunc() that is different in each (code-behind) page which is called by the standard 'New' button in the toolbar. How can I get this to work? So far I have the following (which doesnt work). When the user...
7
2540
by: J-T | last post by:
I have a user control called "Test1" with two button on it ,one is input and the other one is a server control as follow: <input type="button" onClick="this.disabled=true;document.getElementById(btnSend).click();value="Go!"> <asp:button id="btnSend" runat="server" onClick="click" Width="90px" Text="HiddenControl" Visible="False"></asp:button> As you can see the asp.net button is calling a java script function as follows:
3
13603
by: anadimpa | last post by:
Hello all I build a javascript function string in the code behind and register it in the Page_Load of my User Control. I do this because I build the javascript based on some variables that are passed to this user control. How do I (or from where do I) call this function? I tried several ways like: this.Attributes.Add("onLoad", "javascript:openDoc();"); in the page_load / page_prerender etc...
1
1453
by: momo | last post by:
Okay guys, I have this one problem and I admitted I am a novice at this. This is a Code Behind in an aspx page. You will see where I have the plus signs below in SecureQueryString2.vb where I am calling another Class called "InvalidQueryStringException". My problem is where do I put this code so it can be called from SecureQueryString2.vb. I have tried to put it in the same code behind SecureQueryString2.vb and I get errors. How should I...
4
38644
by: sajithkahawatta | last post by:
i want to call a java script function from code behind. in page1.aspx page i placed script' <script language="javascript"> function SetSelected() { infoTextBox.select(); } </script>
1
9198
by: Mike | last post by:
I have an web page (page1.aspx) that has a method in the code behind that I want to call from another page. Is this possible to do? The method resides in the page1.aspx.cs file, its a public method, is there a way I can call that method from another web page? Page2.aspx.cs needs to call Public Void GetCars() in Page1.aspx.cs - is this possible?
0
8253
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8692
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8635
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7182
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6116
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4089
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1499
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.