473,394 Members | 2,020 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

cause webpage one to reload when webpage two is closed.

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.
Jun 27 '08 #1
14 2077
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
Jun 27 '08 #2
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
Jun 27 '08 #3
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.
Jun 27 '08 #4
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
Jun 27 '08 #5
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.
Jun 27 '08 #6
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! :-)
Jun 27 '08 #7
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! :-)
Jun 27 '08 #8
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]
Jun 27 '08 #9

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.

Jun 27 '08 #10
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();"
Jun 27 '08 #11
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();"
Jun 27 '08 #12
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
Jun 27 '08 #13
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
Jun 27 '08 #14
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
Jun 27 '08 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
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...
2
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...
19
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(). ...
1
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"...
3
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...
7
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. ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.