Click here to Skip to main content
15,907,687 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to launch google earth application with in part of the web page itself.
i tried like below its working but it is not opening with in the web page.it is opening as normal windows application.please provide some solution.



using System.Diagnostics;
protected void Button1_Click(object sender, EventArgs e)
{
string str = @"C:\Program Files (x86)\Google\Google Earth\googleearth.exe";
Process process = new Process();
process.StartInfo.FileName = str;
process.Start();
}
Posted

Okay, very smart, you will start Google Earth on the server side. And who will look at it? A cleaning person while walking between all those racks with server blade computers?.. :-)

Are you finally getting what you are talking about?

—SA
 
Share this answer
 
Comments
sudhakar19 26-Dec-13 4:41am    
ya....... actually we are the team of five members.we want to update kml files on same application so i want to share my web application via lan using IIS.i thought that henceforth we can work on same application from their computers.
Sergey Alexandrovich Kryukov 26-Dec-13 12:21pm    
Are you serious? Do you think you share an application by running it? Just think a bit.
—SA
sudhakar19 28-Dec-13 1:49am    
is it not posiible?
Sergey Alexandrovich Kryukov 28-Dec-13 6:04am    
"Possible" or "impossible" are wrong notions. They can only be applied to something which can be recognized as a goal. In this case, the whole idea makes no sense. Well, can you finally think a bit?... Or perhaps you have no idea what Web really does?
—SA
I am not sure the following is the correct answer. You can try it out

Google Earth in your Windows Form[^]

Its for windows application but you can try the same for your web application also..
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 26-Dec-13 2:20am    
In ASP.NET? Are you kidding? Well, think just a bit about it... Nothings looks suspicious?... :-)
—SA
sudhakar19 26-Dec-13 5:00am    
is it not possible?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900