Ask a Question related to ASP.NET General, Design and Development.
-
MB #1
Redirect to target _parent from codebehind
Hello!
I am using a frameset and vb codebehind to work with a database.
When pressing a delete button in one of my frames, I want the hole application to be refreshed, or at least another of my frames to be refreshed. I don't really understand how to do this.
I tried with response.redirect("Frameset1.htm") but I can't set target frame _parent for this command.
I regular <a href="Frameset1.htm" target="_parent">test</a> would solve my problem, but I want to do this from codebehind and not by letting the user click more than the delete button.
How could I solve this issue?
Regards Magnus
MB Guest
-
redirect to guest if first redirect is doesnt work for a user
Hi all, I was wondering if anyone could help me solve a problem Once a user hits a certain webpage ..I try to redirect them to another using... -
Why does VS.NET use codebehind?
I'm reading the Essential ASP.NET book by Fritz onion and he says that when VS.NET creates a new .aspx page for you is uses the codebehind attribute... -
Change _parent
I have an image that is normally inside a movie clip, but it is possible to drag it outside the frame of the movie clip. Is it possible to also... -
src Versus codebehind
hello friend, while developing an application, i encountered a subtle point. for a aspx page, what is the difference between src property and... -
Redirect to New Browser Window like Response.Redirect
That worked just fine for me as long as you put that open statement on one line rather than 2. "michel" <michely3k@yahoo.com> wrote in... -
Natty Gur #2
Re: Redirect to target _parent from codebehind
Hi,
Use Page RegisterStartupscript to embed javascript that change other
frame src.
Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
MSFT #3
RE: Redirect to target _parent from codebehind
Hi Magnus,
I think you only need call some client side JScript to the refresh the
frames. For example to refresh the whole page (all Frames):
window.parent.location="...."
To refresh a particular frame:
window.parent.frames("FrameID").location="..."
Luke
"Microsoft Security Announcement: Have you installed the patch for
Microsoft Security Bulletin MS03-026?? If not Microsoft strongly advises
you to review the information at the following link regarding Microsoft
Security Bulletin MS03-026
[url]http://www.microsoft.com/security/security_bulletins/ms03-026.asp[/url] and/or to
visit Windows Update at [url]http://windowsupdate.microsoft.com[/url] to install the
patch. Running the SCAN program from the Windows Update site will help to
insure you are current with all security patches, not just MS03-026."
MSFT Guest
-
MB #4
Re: Redirect to target _parent from codebehind
Thank you!
Unfortunately I'm not sop familiar with asp.net environment so I wonder how
to call this from a vb codebehind function.
Regards Magnus
"MSFT" <lukezhan@online.microsoft.com> wrote in message
news:rexDuV7XDHA.2108@cpmsftngxa06.phx.gbl...to> Hi Magnus,
>
> I think you only need call some client side JScript to the refresh the
> frames. For example to refresh the whole page (all Frames):
>
> window.parent.location="...."
>
> To refresh a particular frame:
>
> window.parent.frames("FrameID").location="..."
>
> Luke
>
> "Microsoft Security Announcement: Have you installed the patch for
> Microsoft Security Bulletin MS03-026?? If not Microsoft strongly advises
> you to review the information at the following link regarding Microsoft
> Security Bulletin MS03-026
> [url]http://www.microsoft.com/security/security_bulletins/ms03-026.asp[/url] and/or> visit Windows Update at [url]http://windowsupdate.microsoft.com[/url] to install the
> patch. Running the SCAN program from the Windows Update site will help to
> insure you are current with all security patches, not just MS03-026."
>
MB Guest



Reply With Quote

