For a campaign purpose i need to create some URL. When the user clicks on this URL, the html page need to be created on the client machine dynamically. And then when the user clicks on that page he'll be redirect to my own site. please let me know if you have better idea for this.
I don't understand the reason to do that.
Anyway you could compile a html page on client pc (you tagged your post C#, so I assumeyou're developing an app that lives on client pc), save that page in a file and then let it open with default browser.
I think the best way is you write your html page and publish it on a provider and let user pc visit it with browser... isn't it simpler?
Related
I'm developing a web page using asp .net and have another application which is published in my host. I want to access to the application just from my page and the application is not accessible from other IPs.
I used iframe, but iframe is connecting client directly to the application which is not what I want. How can I handle this?
I think without some wierd code, this is not possible since the IFrame is client side calls. This will make a hard time for you to bypass.
A little side question is, why dont you want people to access you page directly on the domain / ip, when showing it in the iframe will still let people access the page?
Is it possible in c# or Jq to redirect the user to an url which is in another server (so server.transfer does not work).
What i need to do is:
send the user from A to B(other server).
show in the browser for the user A URL.
I can not find how to redirect to the url but without changing the name in the browser.
Is there a way in C# ASP.Net or jQuery?
Thank you!
I don't think you can do this programatically. Here's some good info on Domain Masking, which I believe is the only way to accomplish what you are trying to do.
https://en.wikipedia.org/wiki/Domain_masking
I would like to know how to access a web page, for example, to facebook, but using the session I already have open in mozilla firefoz. i mean, I want to access to facebook (for example), but already being logged from the browser, and so not have to log in from the app. Thanks in advance
If you want you can create your own web view application, but if you want to use from the resources from the other apps, you have to use the cookie that sets on the browser's storage.
Please explain to me what do you want to do exactly, may I could help you!
I am developing an ASP.NET application. But i would like to hide the URL so user don't know on which page he or she standing. Is their any solution?
Use Server.Transfer . It doesn't change the URL.
Server.Transfer happens without the browser knowing anything, the browser request a page, but the server returns the content of another.
Server.Transfer() should be used when:
we don't need to show the real URL where we redirected the request
in the users Web Browser
we want to transfer current page request to another .aspx page on the
same server
we want to preserve server resources and avoid the unnecessary
roundtrips to the server
we want to preserve Query String and Form Variables (optionally)
There is no solution unless you can force the user to browse only from a restricted environment in which you can control what software is installed or run. Even if you force the user to use a specific browser, they could use a tool like Fiddler to see what URLs they are going to.
NET ASPX Timesheet website automation, where i have to detect whenever a submit button is pressed by the user and send email automatically.
Unfortunately we dont have access to any website code. Just the website which we can use in internet Explorer.
How to detect the button press? how should i proceed? Do i need to write some custom browser plugin?
Thanks,
Anil
This makes no sense, you're asking how to get access to a websites sessions without having access to the website code or server. I don't think this can be done, in fact I would be really surprised if it can.
Think about the privacy issues.