473,387 Members | 1,545 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,387 software developers and data experts.

cross page post back problem

I the page knows there was a cross post back. but i can not find the control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click" PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn = (Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
Jun 27 '08 #1
8 1999
Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:3D**********************************@microsof t.com...
>I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click" PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes

Jun 27 '08 #2
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:3D**********************************@microsof t.com...
I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click" PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes


Jun 27 '08 #3
The problem is that when you have content in a contentpage, the ID's of the
rendered controls are not the same as what you named them. You should use
the ClientID property to identify it. But, since the control is from the
previous page, you'll need to pass the clientID to the new page, which you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:BA**********************************@microsof t.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
>Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microso ft.com...
>I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click" PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes



Jun 27 '08 #4
Hi Scott,
I'm getting the id across now, but i still can not find the control. I'm
running in 2k8 debug if that some how causes issues. I appreciate your help.
just to make sure i'm doing this correctly:

page on in sub directory with master:
public partial class Admin_x : System.Web.UI.Page
{
public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
protected void Page_Load(object sender, EventArgs e)
{

}
}

page 2 header with reference:
<%@ Page Language="C#" MasterPageFile="~/Admin/adminMasterPage.master"
AutoEventWireup="true" CodeFile="y.aspx.cs" Inherits="Admin_y"
Title="Untitled Page" %>
<%@ PreviousPageType VirtualPath="~/Admin/x.aspx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
</asp:Content>

page 2 code behind:
public partial class Admin_y : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Response.Write(PreviousPage.ButtonClientID.ToStrin g());
Response.Write("<BR />");
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
if (btn == null)
Response.Write("NG");
else
Response.Write("OK");
}
}
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
The problem is that when you have content in a contentpage, the ID's of the
rendered controls are not the same as what you named them. You should use
the ClientID property to identify it. But, since the control is from the
previous page, you'll need to pass the clientID to the new page, which you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:BA**********************************@microsof t.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microsof t.com...
I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click" PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes


Jun 27 '08 #5
Is page one (below) using a master page or just page 2?

-Scott
"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:6E**********************************@microsof t.com...
Hi Scott,
I'm getting the id across now, but i still can not find the control. I'm
running in 2k8 debug if that some how causes issues. I appreciate your
help.
just to make sure i'm doing this correctly:

page on in sub directory with master:
public partial class Admin_x : System.Web.UI.Page
{
public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
protected void Page_Load(object sender, EventArgs e)
{

}
}

page 2 header with reference:
<%@ Page Language="C#" MasterPageFile="~/Admin/adminMasterPage.master"
AutoEventWireup="true" CodeFile="y.aspx.cs" Inherits="Admin_y"
Title="Untitled Page" %>
<%@ PreviousPageType VirtualPath="~/Admin/x.aspx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
</asp:Content>

page 2 code behind:
public partial class Admin_y : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Response.Write(PreviousPage.ButtonClientID.ToStrin g());
Response.Write("<BR />");
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
if (btn == null)
Response.Write("NG");
else
Response.Write("OK");
}
}
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
>The problem is that when you have content in a contentpage, the ID's of
the
rendered controls are not the same as what you named them. You should
use
the ClientID property to identify it. But, since the control is from the
previous page, you'll need to pass the clientID to the new page, which
you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top
like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.But tonClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:BA**********************************@microso ft.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microso ft.com...
I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click"
PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes



Jun 27 '08 #6
both use a single (same) master page (no nested masters).

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
Is page one (below) using a master page or just page 2?

-Scott
"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:6E**********************************@microsof t.com...
Hi Scott,
I'm getting the id across now, but i still can not find the control. I'm
running in 2k8 debug if that some how causes issues. I appreciate your
help.
just to make sure i'm doing this correctly:

page on in sub directory with master:
public partial class Admin_x : System.Web.UI.Page
{
public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
protected void Page_Load(object sender, EventArgs e)
{

}
}

page 2 header with reference:
<%@ Page Language="C#" MasterPageFile="~/Admin/adminMasterPage.master"
AutoEventWireup="true" CodeFile="y.aspx.cs" Inherits="Admin_y"
Title="Untitled Page" %>
<%@ PreviousPageType VirtualPath="~/Admin/x.aspx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
</asp:Content>

page 2 code behind:
public partial class Admin_y : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Response.Write(PreviousPage.ButtonClientID.ToStrin g());
Response.Write("<BR />");
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
if (btn == null)
Response.Write("NG");
else
Response.Write("OK");
}
}
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
The problem is that when you have content in a contentpage, the ID's of
the
rendered controls are not the same as what you named them. You should
use
the ClientID property to identify it. But, since the control is from the
previous page, you'll need to pass the clientID to the new page, which
you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top
like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:BA**********************************@microsof t.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microsof t.com...
I the page knows there was a cross post back. but i can not find the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click"
PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes



Jun 27 '08 #7
So, let me make sure I understand, you are now able to get the actual
clientID of your button on page 2 (you can confirm this by not only looking
at the response.write, but also by looking at the rendered source code and
find the control yourself), but the page 2 code doesn't locate the control
with the FindControl method?

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:3A**********************************@microsof t.com...
both use a single (same) master page (no nested masters).

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
>Is page one (below) using a master page or just page 2?

-Scott
"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:6E**********************************@microso ft.com...
Hi Scott,
I'm getting the id across now, but i still can not find the control.
I'm
running in 2k8 debug if that some how causes issues. I appreciate your
help.
just to make sure i'm doing this correctly:

page on in sub directory with master:
public partial class Admin_x : System.Web.UI.Page
{
public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
protected void Page_Load(object sender, EventArgs e)
{

}
}

page 2 header with reference:
<%@ Page Language="C#" MasterPageFile="~/Admin/adminMasterPage.master"
AutoEventWireup="true" CodeFile="y.aspx.cs" Inherits="Admin_y"
Title="Untitled Page" %>
<%@ PreviousPageType VirtualPath="~/Admin/x.aspx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
</asp:Content>

page 2 code behind:
public partial class Admin_y : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Response.Write(PreviousPage.ButtonClientID.ToStrin g());
Response.Write("<BR />");
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
if (btn == null)
Response.Write("NG");
else
Response.Write("OK");
}
}
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

The problem is that when you have content in a contentpage, the ID's
of
the
rendered controls are not the same as what you named them. You should
use
the ClientID property to identify it. But, since the control is from
the
previous page, you'll need to pass the clientID to the new page, which
you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top
like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.But tonClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:BA**********************************@microso ft.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microso ft.com...
I the page knows there was a cross post back. but i can not find
the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click"
PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with
null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes




Jun 27 '08 #8
yes, odd as this seems. I even created a value specificly get,set to add to
the posted page and this is found directly so that Previouspage.iMyID will
give the id i set in page 1. I'll end up using this, but it's odd that find
control is not finding!!!

(you can confirm this by not only looking
at the response.write, but also by looking at the rendered source code and
find the control yourself) Have not confirmed that the control is there, but intelesense get the value it writes.
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
So, let me make sure I understand, you are now able to get the actual
clientID of your button on page 2 (you can confirm this by not only looking
at the response.write, but also by looking at the rendered source code and
find the control yourself), but the page 2 code doesn't locate the control
with the FindControl method?

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in message
news:3A**********************************@microsof t.com...
both use a single (same) master page (no nested masters).

--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:
Is page one (below) using a master page or just page 2?

-Scott
"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:6E**********************************@microsof t.com...
Hi Scott,
I'm getting the id across now, but i still can not find the control.
I'm
running in 2k8 debug if that some how causes issues. I appreciate your
help.
just to make sure i'm doing this correctly:

page on in sub directory with master:
public partial class Admin_x : System.Web.UI.Page
{
public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
protected void Page_Load(object sender, EventArgs e)
{

}
}

page 2 header with reference:
<%@ Page Language="C#" MasterPageFile="~/Admin/adminMasterPage.master"
AutoEventWireup="true" CodeFile="y.aspx.cs" Inherits="Admin_y"
Title="Untitled Page" %>
<%@ PreviousPageType VirtualPath="~/Admin/x.aspx" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
</asp:Content>

page 2 code behind:
public partial class Admin_y : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Response.Write(PreviousPage.ButtonClientID.ToStrin g());
Response.Write("<BR />");
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
if (btn == null)
Response.Write("NG");
else
Response.Write("OK");
}
}
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

The problem is that when you have content in a contentpage, the ID's
of
the
rendered controls are not the same as what you named them. You should
use
the ClientID property to identify it. But, since the control is from
the
previous page, you'll need to pass the clientID to the new page, which
you
can do via a crosspagepostback property as in:

[source page]

public String ButtonClientID
{
get
{
return btnSendAlert.ClientID;
}
}
[.aspx destination page]

Make sure that a reference to the previous page is declared at the top
like
this:

<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

[.aspx.cs destination page]

if (PreviousPage != null)
{
Button btn =
(Button)PreviousPage.FindControl(PreviousPage.Butt onClientID);
Response.Write(btn.Text);
}
Good luck!

-Scott

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:BA**********************************@microsof t.com...
yes

--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes
"Scott M." wrote:

Are you using MasterPages here?

"WebBuilder451" <We***********@discussions.microsoft.comwrote in
message
news:3D**********************************@microsof t.com...
I the page knows there was a cross post back. but i can not find
the
control.
(asp.net 3.5)

calling page has a master

calling control:
<asp:Button ID="btnSendAlert" runat="server" Text="Go"
onclick="btnSendAlert_Click"
PostBackUrl="ItemUpLoadAdmin.aspx"
CommandArgument="5" />

receiving page
if (PreviousPage != null)
{

Button btn =
(Button)PreviousPage.FindControl("btnSendAlert");
Response.Write(btn.Text); <--- errors here with
null
reference
}
--
(i''ll be asking a lot of these, but I find C# totally way cooler
than
vb
and there''s no go''n back!!!)
thanks (as always)

kes




Jun 27 '08 #9

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

Similar topics

2
by: Kim Noer | last post by:
Hi there ... I'm having some troubles getting a form posted back to a frame, which was the 'launching' page to the popup. Ie. I want to get 'thanksabunch.asp' to post back to the frame1...
22
by: Trammel | last post by:
Hi, I am here to request support from anyone that has idea's on cross-browser HTML (Mainly Firefox and IE). My personal website http://trammel.no-ip.info works fine on Firefox but IE decides to...
23
by: Jeff Rodriguez | last post by:
Here's what I want do: Have a main daemon which starts up several threads in a Boss-Queue structure. From those threads, I want them all to sit and watch a queue. Once an entry goes into the...
0
by: Lucas, Todd | last post by:
Hello everyone! I'm having a problem with a WebControl that I'm designing for a Menu. I've been at it for about 3 weeks now, and can't seem to get around this problem. So I'm hoping that someone...
10
by: Atul Bahl | last post by:
I am not able to reference values by using cross page postings when using master page. Currently I am runing on beta 2 of CLR. Any ideas... Thanks Atul
6
by: scottyman | last post by:
I can't make this script work properly. I've gone as far as I can with it and the rest is out of my ability. I can do some html editing but I'm lost in the Java world. The script at the bottom of...
0
by: Martin | last post by:
Hi, In the scenario described by Scott Allen at http://odetocode.com/Articles/421.aspx, he points out the issue of handling server side validation failing on the source page of a cross page post...
2
by: deshg | last post by:
Hey everyone, I am a php programmer originally and am just helping a friend of mine update their website that they paid a designer (well that's what he called himself!) to do ages ago. I have...
2
by: =?Utf-8?B?V2ViQnVpbGRlcjQ1MQ==?= | last post by:
I'm reying to get around the problem of cross page post back. I'm attempting to use an interface to cast the previous page. if (PreviousPage != null) { ICommonPostback frm = PreviousPage as...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...

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.