When I am click on logoff hyperlink in my application, it returns me a popup.
There is a normal code of asp.net which redirect to logoff page and clear session.!
Popup message is: "Do you want to allow this website to open an app on your computer?"
Click here to see popup
I do not want this popup.
For this, I have tried to change few settings of IE, but it doesn't work for me.
It will be Appreciate if anyone can suggest the cause of the issue and possible resolution?
Thanks in advance!
Related
GoodEvening Everyone,
I am having one asp.net application which contains many links. some of the link displays modal popup Now if i move to link which nabvigates me and click on browser back button so modal popup gets display which i dont want. i need the previous page should get displayed instead of modal popup if i click on browser back button
for example
i clicked on link1 - navigated to page2
i clicked on link2 - displayed modal popup
i click on link3 - navigated to page3
Now if i click on browser back button so modal popup get displays instead of which i want the page2(previous page before the modal popup ) should get displayed.
So please let me know is this possible and how its possible.
It will be appreciated if some one provide me code to do this...
Let me know in case of more information required
There are several reasons this might be happening.
It might be that you are setting some state flags that persist between pages that influence the modal popups visibility. If you need help with this we will need some more details and preferably code samples.
It might be a browser caching issue. When you hit the back button the browser might be fetching the page from it's cache (not the server) with the popup visible. To test this you could disable the browsers cache and run through your process. If this proves to be the reason you can disable browser caching for your site by adding some meta tags (you'll find the exact tags on Google easily)
I have a page in asp.net. A button click in the page will open a pop-up.
Now if session is expired, it is opening the pop-up window and in the pop-up it is showing the login screen.
Is there any way in which i can avoid pop-up being opened if the session is expired and directly go back to login page?
When you say pop-up, do you mean window.open? If so, then you have to make a AJAX call to verify the session, before opening the new window.
I am not sure I understand your requirement clearly. There is no exact way to achive this. But we can do it javascript.
put a timer(duration would be session timeout, use settimeout function) in the parent page. Check this value before open a popup.
In my web application, wheni click on GO button one new window will open [it is a page (.aspx page)]. in that new window when i click on submit button, the new window will close.
please help me. Thank you.
Use javascript to call document.window.close() on the click event. You would need to post code or more details about your platform to provide any more.
On my main page I have two pop up pages.both of them have textboxes to be filled
By the user with save and close buttons .i need to disable one of the pop up pages if there are values in the other pop up page.how do I accomplish please give in your ideas.
Thanks
I don't know if i got you
you are saying they are two popup pages r u opening two pages in popup than you should not be doing that place the HTML in your page and open in the popup rather than the pages.
Any ways when ever your first popup is open and data has been validated you can make the link for second pop up visible false or disable it and it can be done on both server as well as client side.
Im working on an ASP.Net web forms application, where I have a form and the Index is working correctly, until I select a value from one specific control, a dropdownlist. After that no matter what control I am on if I press TAB it will go to the URL/Address Bar, from there to the search bar and then again to the URL bar...
Has anybody has something like this happen to them?
Thanks!
Hmmm I solved it.. well... found the cause.. it seems that in a part of the code after changing DropDownList it fired a "loading" dialog from ComponentArt, which apparently is not working, the dialog is not visible but it IS screwing up the tab order, took it away and its working now....