Hi I tried a google search but could not find anything. I am trying to cause
one webpage to reload when a second web page is closed. The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer. 14 1990
On Jun 17, 9:19*pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. *I am trying to cause
one webpage to reload when a second web page is closed. *The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. *Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. I placed the code as
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first page is just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. I am trying to cause
one webpage to reload when a second web page is closed. The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps
On Jun 17, 10:28*pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. *I placed the code as
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
* <body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first page is just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. *I am tryingto cause
one webpage to reload when a second web page is closed. *The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. *Since I need toclose
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps- Hide quoted text -
- Show quoted text -
The BODY element contains all the content of a document, including TD
and TABLE. It can be nested within HTML element only. It seems that
you are using Master page and it means you should change a BODY
element of the Master page. If Master page is used for many Content
pages then you can either make a copy of it (to apply changes to the
BODY tag), or you can set your Master page body tag to:
<body id="mBody" runat="server">
Then add this on the page that has to be closed:
public void Page_Load(Object sender, EventArgs e)
{
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("mBody");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
}
I didn't test it, but I think it should work.
Hi, I was able to add the body tag, since I am using a master page I had to
create an id for the tag in the master page and set a public property, so
thinking I can now run a script possibly to reload the first window.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. I am trying to cause
one webpage to reload when a second web page is closed. The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps
Hi, It works! I guess it must know what the parent window is to be able to
reload it.
Thanks!
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 10:28 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. I placed the code as
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first page is just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. I am trying to cause
one webpage to reload when a second web page is closed. The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread
>http://forums.asp.net/t/988319.aspx
Hope this helps- Hide quoted text -
- Show quoted text -
The BODY element contains all the content of a document, including TD
and TABLE. It can be nested within HTML element only. It seems that
you are using Master page and it means you should change a BODY
element of the Master page. If Master page is used for many Content
pages then you can either make a copy of it (to apply changes to the
BODY tag), or you can set your Master page body tag to:
<body id="mBody" runat="server">
Then add this on the page that has to be closed:
public void Page_Load(Object sender, EventArgs e)
{
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("mBody");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
}
I didn't test it, but I think it should work.
On Jun 17, 11:25*pm, Paul <P...@discussions.microsoft.comwrote:
Hi, It works! I guess it must know what the parent window is to be able to
reload it.
Thanks!
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 10:28 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. *I placed the codeas
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
* <body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first page is just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. *I am trying to cause
one webpage to reload when a second web page is closed. *The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. *Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps- Hide quoted text -
- Show quoted text -
The BODY element contains all the content of a document, including TD
and TABLE. It can be nested within HTML element only. It seems that
you are using Master page and it means you should change a BODY
element of the Master page. If Master page is used for many Content
pages then you can either make a copy of it (to apply changes to the
BODY tag), or you can set your Master page body tag to:
<body id="mBody" runat="server">
Then add this on the page that has to be closed:
public void Page_Load(Object sender, EventArgs e)
{
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("mBody");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
}
I didn't test it, but I think it should work.- Hide quoted text -
- Show quoted text -
Great! :-)
Hi just had one last question. Not sure if there is anything that can be
done about this but when webpage 2 reloads (I have some controls that
postback) It also causes webpage 1 to reload. Is there anyway to have page
one reload only when page two is closed? I guess the onunload event must
occure when page 2 postsback to the server? Thanks.
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("MasterPage BodyTag");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 11:25 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, It works! I guess it must know what the parent window is to be able to
reload it.
Thanks!
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 10:28 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. I placed the code as
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first page is just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. I am trying to cause
one webpage to reload when a second web page is closed. The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread
>http://forums.asp.net/t/988319.aspx
Hope this helps- Hide quoted text -
- Show quoted text -
The BODY element contains all the content of a document, including TD
and TABLE. It can be nested within HTML element only. It seems that
you are using Master page and it means you should change a BODY
element of the Master page. If Master page is used for many Content
pages then you can either make a copy of it (to apply changes to the
BODY tag), or you can set your Master page body tag to:
<body id="mBody" runat="server">
Then add this on the page that has to be closed:
public void Page_Load(Object sender, EventArgs e)
{
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("mBody");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
}
I didn't test it, but I think it should work.- Hide quoted text -
- Show quoted text -
Great! :-)
On Jun 18, 12:08*am, Paul <P...@discussions.microsoft.comwrote:
Hi just had one last question. *Not sure if there is anything that can be
done about this but when webpage 2 reloads (I have some controls that
postback) It also causes webpage 1 to reload. *Is there anyway to have page
one reload only when page two is closed? *I guess the onunload event must
occure when page 2 postsback to the server? Thanks.
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("MasterPage BodyTag");
* * * * * * * * * *body.Attributes.Add("onunload",
* * * * * * * * * "opener.location.href=opener.location.href;");
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 11:25 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, It works! I guess it must know what the parent window is to be able to
reload it.
Thanks!
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 10:28 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the response.
I tried adding
<body onunload="opener.location.href=opener.location.hre f;"></body>
to the source of the second page but get the error
element body can not be nested within element td. *I placed thecode as
follows in the second form aspx file.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
* <body onunload="opener.location.href=opener.location.hre f;"></body>
followed by several html tables.
Anyhow just wondering where to place the body tag?
Also the way the user gets to the second page from the first pageis just a
hyperlink.
thanks.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 17, 9:19 pm, Paul <P...@discussions.microsoft.comwrote:
Hi I tried a google search but could not find anything. *I am trying to cause
one webpage to reload when a second web page is closed. *The second webpage
loads data into a session variable and when closed I need to reload the first
page loading in the data from the session variable. *Since I need to close
the sescond form just setting the post back url to the first page on the
close button from the second page is not quite what I am looking for.
--
Paul G
Software engineer.
Hi Paul,
Try to add the following code to your second web page
<body onunload="opener.location.href=opener.location.hre f;">
You might be also interested to see the following thread http://forums.asp.net/t/988319.aspx
Hope this helps- Hide quoted text -
- Show quoted text -
The BODY element contains all the content of a document, including TD
and TABLE. It can be nested within HTML element only. It seems that
you are using Master page and it means you should change a BODY
element of the Master page. If Master page is used for many Content
pages then you can either make a copy of it (to apply changes to the
BODY tag), or you can set your Master page body tag to:
<body id="mBody" runat="server">
Then add this on the page that has to be closed:
public void Page_Load(Object sender, EventArgs e)
{
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("mBody");
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
}
I didn't test it, but I think it should work.- Hide quoted text -
- Show quoted text -
Great! :-)- Hide quoted text -
- Show quoted text -
Hi Paul
The onUnload event is handled when you refresh the page as well.
So, to make your code triggered on close only you can try following:
1) add the following js-code to your Master page between <headand </
head>
<script>
function doUnload()
{
if (window.event.clientX < 0 && window.event.clientY < 0)
{
opener.location.href=opener.location.href;
}
}
</script>
2) change code-behind, from
body.Attributes.Add("onunload",
"opener.location.href=opener.location.href;");
to
body.Attributes.Add("onunload", "doUnload();");
That should avoid the refresh of the parent window if child window has
been refreshed.
I hope it works
Cheers!
Alexey Smirnov [MVP]
Hi, thanks for the additional response. I tried the following but now it
appears that the first page is not reloading now but even when I close the
second page. To close the second page I am using an input button with the
following
<input id="btn_close" type="button" value="Close" onclick ="window.close()"
style="width: 100px" class="Button_sm" />.
Here is the code I added as specified, in the master page I added between
the head tags.
<script type="text/javascript">
function doUnload()
{
if (window.event.clientX < 0 && window.event.clientY < 0)
{
opener.location.href=opener.location.href;
}
}
</script>
In the code behind on the second webform (the one that when closed should
cause the first page to refresh)
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("MasterPage BodyTag");
body.Attributes.Add("onunload", "doUnload();");
thanks.
--
Paul G
Software engineer.
On Jun 18, 6:28*pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the additional response. *I tried the following but now it
appears that the first page is not reloading now but even when I close the
second page. *To close the second page I am using an input button with the
following
<input id="btn_close" type="button" value="Close" onclick ="window.close()"
style="width: 100px" class="Button_sm" />.
Here is the code I added as specified, in the master page I added between
the head tags.
*<script *type="text/javascript">
function doUnload()
{
*if (window.event.clientX < 0 && window.event.clientY < 0)
*{
* *opener.location.href=opener.location.href;
*}}
</script>
In the code behind on the second webform (the one that when closed should
cause the first page to refresh)
*HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("MasterPage BodyTag");
* * * * * * * * * * * * * * *body.Attributes.Add("onunload", "doUnload();"); *
thanks.
--
Paul G
Software engineer.
Paul, if you programmatically close the page by onclick
="window.close()" then it would be much easier to add the refresh call
directly to the onclick call. Try it
onclick="javascript :opener.location.href=opener.lo cation.href;window.close();"
Hi Alexey,thanks for the additional information, that seemed to do the trick.
I probably should have mentioned I was closing form 2 programatically. Have
another minor issue, on webform one I am reading reading a session variable
which works now. The session variable is a generic list with a simple
structure as a datatype. The problem is on webform one when I try to display
it in a gridview control I get the error (datasource for gridview does not
have any properties or attributes from which to generate columns). For the
code I have
genericlist = (List<structRepo>)Session["genericlist"];
if (genericlist != null)
{
gridview.DataSource = genericlist;//
gvRepository.DataBind();
}
I also have the genericlist declared as public.
--
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 18, 6:28 pm, Paul <P...@discussions.microsoft.comwrote:
Hi, thanks for the additional response. I tried the following but now it
appears that the first page is not reloading now but even when I close the
second page. To close the second page I am using an input button with the
following
<input id="btn_close" type="button" value="Close" onclick ="window.close()"
style="width: 100px" class="Button_sm" />.
Here is the code I added as specified, in the master page I added between
the head tags.
<script type="text/javascript">
function doUnload()
{
if (window.event.clientX < 0 && window.event.clientY < 0)
{
opener.location.href=opener.location.href;
}}
</script>
In the code behind on the second webform (the one that when closed should
cause the first page to refresh)
HtmlGenericControl body =
(HtmlGenericControl)Master.FindControl("MasterPage BodyTag");
body.Attributes.Add("onunload", "doUnload();");
thanks.
--
Paul G
Software engineer.
Paul, if you programmatically close the page by onclick
="window.close()" then it would be much easier to add the refresh call
directly to the onclick call. Try it
onclick="javascript:opener.location.href=opener.lo cation.href;window.close();"
On Jun 18, 9:53*pm, Paul <P...@discussions.microsoft.comwrote:
Hi Alexey,thanks for the additional information, that seemed to do the trick.
*I probably should have mentioned I was closing form 2 programatically.*Have
another minor issue, on webform one I am reading reading a session variable
which works now. *The session variable is a generic list with a simple
structure as a datatype. *The problem is on webform one when I try to display
it in a gridview control I get the error (datasource for gridview does not
have any properties or attributes from which to generate columns). *Forthe
code I have
*genericlist = (List<structRepo>)Session["genericlist"];
* * * * * * * * if (genericlist != null)
* * * * * * * * {
* * * * * * * * * * gridview.DataSource = genericlist;// * * * * * * * * * *
* * * * gvRepository.DataBind();
* * * * * * * * }
I also have the genericlist declared as public.
Hi Paul,
if using a GridView with AutoGenerateColumns="True" the data source
expected to get properties to generate the columns of the grid. You
can either, use a GridView with BoundColumns specified for required
columns
<asp:GridView AutoGenerateColumns="false"...
<Columns>
<asp:BoundField DataField="..."
or you should update the structRepo class to return properties for
each field
e.g.
private int _list_id;
public int list_id {
get {
return _list_id
}
set {
_list_id = value
}
}
Please take a look at the following link (the definition for the
public class Person) http://unboxedsolutions.com/sean/arc...01/22/428.aspx
Hope it helps
Hi Alexey, thanks for the additional information. I tried setting the
AutoGenerateColumns="False" and then adding bound columns and setting the
datasource name to the same as the names of the items in the structure, but
that did not seem to work as it could not find the name. I will try setting
up properties and setting the autogencolumns to true.
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 18, 9:53 pm, Paul <P...@discussions.microsoft.comwrote:
Hi Alexey,thanks for the additional information, that seemed to do the trick.
I probably should have mentioned I was closing form 2 programatically. Have
another minor issue, on webform one I am reading reading a session variable
which works now. The session variable is a generic list with a simple
structure as a datatype. The problem is on webform one when I try to display
it in a gridview control I get the error (datasource for gridview does not
have any properties or attributes from which to generate columns). For the
code I have
genericlist = (List<structRepo>)Session["genericlist"];
if (genericlist != null)
{
gridview.DataSource = genericlist;//
gvRepository.DataBind();
}
I also have the genericlist declared as public.
Hi Paul,
if using a GridView with AutoGenerateColumns="True" the data source
expected to get properties to generate the columns of the grid. You
can either, use a GridView with BoundColumns specified for required
columns
<asp:GridView AutoGenerateColumns="false"...
<Columns>
<asp:BoundField DataField="..."
or you should update the structRepo class to return properties for
each field
e.g.
private int _list_id;
public int list_id {
get {
return _list_id
}
set {
_list_id = value
}
}
Please take a look at the following link (the definition for the
public class Person) http://unboxedsolutions.com/sean/arc...01/22/428.aspx
Hope it helps
On Jun 19, 4:51*pm, Paul <P...@discussions.microsoft.comwrote:
Hi Alexey, thanks for the additional information. *I tried setting the
AutoGenerateColumns="False" and then adding bound columns and setting the
datasource name to the same as the names of the items in the structure, but
that did not seem to work as it could not find the name. *I will try setting
up properties and setting the autogencolumns to true.
Paul G
Software engineer.
"Alexey Smirnov" wrote:
On Jun 18, 9:53 pm, Paul <P...@discussions.microsoft.comwrote:
Hi Alexey,thanks for the additional information, that seemed to do the trick.
*I probably should have mentioned I was closing form 2 programatically. *Have
another minor issue, on webform one I am reading reading a session variable
which works now. *The session variable is a generic list with a simple
structure as a datatype. *The problem is on webform one when I try to display
it in a gridview control I get the error (datasource for gridview does not
have any properties or attributes from which to generate columns). *For the
code I have
*genericlist = (List<structRepo>)Session["genericlist"];
* * * * * * * * if (genericlist != null)
* * * * * * * * {
* * * * * * * * * * gridview.DataSource = genericlist;// * * * * * * * * * *
* * * * gvRepository.DataBind();
* * * * * * * * }
I also have the genericlist declared as public.
Hi Paul,
if using a GridView with AutoGenerateColumns="True" the data source
expected to get properties to generate the columns of the grid. You
can either, use a GridView with BoundColumns specified for required
columns
<asp:GridView AutoGenerateColumns="false"...
<Columns>
<asp:BoundField DataField="..."
or you should update the structRepo class to return properties for
each field
e.g.
private int _list_id;
public int list_id {
* get {
* * return _list_id
* }
* set {
* * _list_id = value
* }
}
Please take a look at the following link (the definition for the
public class Person) http://unboxedsolutions.com/sean/arc...01/22/428.aspx
Hope it helps- Hide quoted text -
- Show quoted text -
ah, true, I think you're right and at first you have to set properties
to bind the grid This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: sentinel |
last post by:
Hi all,
I'm trying to reload a frame from a pop-up, but really cannot figure
this out.
Within my index.htm file, I make a link to call a pop-up frame with a
javascript function that calls the...
|
by: alex bazan |
last post by:
I'm popping a window to a page with a different dns than the parent, and
i want the opener's location reloaded when this window is closed.
With Mozilla it seems that all the opener's methods and...
|
by: Darren |
last post by:
I have a page that opens a popup window and within the window, some databse
info is submitted and the window closes. It then refreshes the original
window using window.opener.location.reload(). ...
|
by: Lyners |
last post by:
I am trying to figure out how to do this.
I have created a form on a webpage that shows users that you can edit or
delete. I have a hyperlink to another webpage that adds users. The "Add
Users"...
|
by: batista |
last post by:
Hello all,
I currently have a webpage which has a grid and using webservice.htc im
updating its content after every 5 seconds.
Now I want to add two forms at the bottom of the page.One of them...
|
by: Kaster |
last post by:
I am using the script below on several webpages, to pop up a window where people can order some things. It works well when shifting forth and back between the same page from where it is activated. ...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
| |