PC Review


Reply
Thread Tools Rate Thread

Could some one help with this error on page

 
 
=?Utf-8?B?TWVyZGFhZA==?=
Guest
Posts: n/a
 
      11th Jun 2007
Hi,

I am using ASP.NET 2.0 and Master Pages,etc. I am NOT using AJAX.
I don't see the problem on my local server, only when I publish it to the web.

Problem happens on a page Where entry into a textbox causes a post back.

When I type inside the textbox, I get the exclaimation and "Error on Page".
Then details say "line 105, object expected"

In View Source, Line 105 is as follows:
<input name="ctl00$ContentPlaceHolder1$boxCnt" type="text" value="67"
onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$boxCnt\',\'\')',
0)" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;"
id="ctl00_ContentPlaceHolder1_boxCnt" style="height:18px;width:58px;" />

I get this error in other places as well.

Thanks for any help
 
Reply With Quote
 
 
 
 
Alexey Smirnov
Guest
Posts: n/a
 
      11th Jun 2007
On Jun 11, 11:36 pm, Merdaad <Merd...@discussions.microsoft.com>
wrote:
> Hi,
>
> I am using ASP.NET 2.0 and Master Pages,etc. I am NOT using AJAX.
> I don't see the problem on my local server, only when I publish it to theweb.
>
> Problem happens on a page Where entry into a textbox causes a post back.
>
> When I type inside the textbox, I get the exclaimation and "Error on Page".
> Then details say "line 105, object expected"
>
> In View Source, Line 105 is as follows:
> <input name="ctl00$ContentPlaceHolder1$boxCnt" type="text" value="67"
> onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$b*oxCnt\',\'\')',
> 0)" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;"
> id="ctl00_ContentPlaceHolder1_boxCnt" style="height:18px;width:58px;"/>
>
> I get this error in other places as well.
>
> Thanks for any help


How the textbox control is declared and do you use a validation
controls for it?

<asp:TextBox...

 
Reply With Quote
 
=?Utf-8?B?TWVyZGFhZA==?=
Guest
Posts: n/a
 
      11th Jun 2007
Thanks for the response. There is a validator. This is how the Textbox is
declared:
<asp:TextBox ID="boxCnt" runat="server" Width="58px" Height="18px"
AutoPostBack="true" OnTextChanged="boxCnt_TextChanged"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
ControlToValidate="boxCnt"
ErrorMessage="Number Of Boxes - Required"
Font-Size="XX-Small"></asp:RequiredFieldValidator>

"Alexey Smirnov" wrote:

> On Jun 11, 11:36 pm, Merdaad <Merd...@discussions.microsoft.com>
> wrote:
> > Hi,
> >
> > I am using ASP.NET 2.0 and Master Pages,etc. I am NOT using AJAX.
> > I don't see the problem on my local server, only when I publish it to the web.
> >
> > Problem happens on a page Where entry into a textbox causes a post back.
> >
> > When I type inside the textbox, I get the exclaimation and "Error on Page".
> > Then details say "line 105, object expected"
> >
> > In View Source, Line 105 is as follows:
> > <input name="ctl00$ContentPlaceHolder1$boxCnt" type="text" value="67"
> > onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$b-oxCnt\',\'\')',
> > 0)" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;"
> > id="ctl00_ContentPlaceHolder1_boxCnt" style="height:18px;width:58px;" />
> >
> > I get this error in other places as well.
> >
> > Thanks for any help

>
> How the textbox control is declared and do you use a validation
> controls for it?
>
> <asp:TextBox...
>
>

 
Reply With Quote
 
Alexey Smirnov
Guest
Posts: n/a
 
      11th Jun 2007

"Merdaad" <(E-Mail Removed)> wrote in message
news:27E68AE6-3DEF-4F63-9431-(E-Mail Removed)...
> Thanks for the response. There is a validator. This is how the Textbox
> is
> declared:
> <asp:TextBox ID="boxCnt" runat="server" Width="58px" Height="18px"
> AutoPostBack="true" OnTextChanged="boxCnt_TextChanged"></asp:TextBox>
> <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
> ControlToValidate="boxCnt"
> ErrorMessage="Number Of Boxes - Required"
> Font-Size="XX-Small"></asp:RequiredFieldValidator>
>


Hmm... are you sure that ASP.NET 2.0 is properly installed on the server? If
it works on the local box, it should work on the server too, I think.

Check the version and try to debug js to see what object is "expected"


 
Reply With Quote
 
=?Utf-8?B?TWVyZGFhZA==?=
Guest
Posts: n/a
 
      11th Jun 2007
..How many ways are there to install ASP.NET 2.0. Obviously I don't have
access to the way ASP.NET 2.0 was installed on the server. Could you
elaborate?

Also you say debug JS? How would I do that. I am not using JavaScript.
Why is JavaScript even created at run time? What is ths .axd file for?

Thanks again

"Alexey Smirnov" wrote:

>
> "Merdaad" <(E-Mail Removed)> wrote in message
> news:27E68AE6-3DEF-4F63-9431-(E-Mail Removed)...
> > Thanks for the response. There is a validator. This is how the Textbox
> > is
> > declared:
> > <asp:TextBox ID="boxCnt" runat="server" Width="58px" Height="18px"
> > AutoPostBack="true" OnTextChanged="boxCnt_TextChanged"></asp:TextBox>
> > <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
> > ControlToValidate="boxCnt"
> > ErrorMessage="Number Of Boxes - Required"
> > Font-Size="XX-Small"></asp:RequiredFieldValidator>
> >

>
> Hmm... are you sure that ASP.NET 2.0 is properly installed on the server? If
> it works on the local box, it should work on the server too, I think.
>
> Check the version and try to debug js to see what object is "expected"
>
>
>

 
Reply With Quote
 
Alexey Smirnov
Guest
Posts: n/a
 
      12th Jun 2007

"Merdaad" <(E-Mail Removed)> wrote in message
news66B78E3-09C6-4BFE-B529-(E-Mail Removed)...
> .How many ways are there to install ASP.NET 2.0. Obviously I don't have
> access to the way ASP.NET 2.0 was installed on the server. Could you
> elaborate?
>
> Also you say debug JS? How would I do that. I am not using JavaScript.
> Why is JavaScript even created at run time? What is ths .axd file for?
>


To debug JS
http://blogs.msdn.com/ie/archive/2004/10/26/247912.aspx
http://www.jonathanboutelle.com/mt/a...debug_jav.html

Regarding AXD
http://support.microsoft.com/kb/910442

I've also found a post about that the webresource.axd file is not getting
downloaded on the client sometimes.
http://blogs.msdn.com/paraga/archive...02/522766.aspx

Have a look, maybe it helps


 
Reply With Quote
 
=?Utf-8?B?TWVyZGFhZA==?=
Guest
Posts: n/a
 
      12th Jun 2007
OK. Italked to the ISP where the server is.

They say it's a IE 7.0 issue!
I tried this samething for myself and on Firefox I don't see the error while
on IE 7.0 I consistently do.

Thanks again

"Alexey Smirnov" wrote:

>
> "Merdaad" <(E-Mail Removed)> wrote in message
> news66B78E3-09C6-4BFE-B529-(E-Mail Removed)...
> > .How many ways are there to install ASP.NET 2.0. Obviously I don't have
> > access to the way ASP.NET 2.0 was installed on the server. Could you
> > elaborate?
> >
> > Also you say debug JS? How would I do that. I am not using JavaScript.
> > Why is JavaScript even created at run time? What is ths .axd file for?
> >

>
> To debug JS
> http://blogs.msdn.com/ie/archive/2004/10/26/247912.aspx
> http://www.jonathanboutelle.com/mt/a...debug_jav.html
>
> Regarding AXD
> http://support.microsoft.com/kb/910442
>
> I've also found a post about that the webresource.axd file is not getting
> downloaded on the client sometimes.
> http://blogs.msdn.com/paraga/archive...02/522766.aspx
>
> Have a look, maybe it helps
>
>
>

 
Reply With Quote
 
Alexey Smirnov
Guest
Posts: n/a
 
      12th Jun 2007
On Jun 12, 1:14 am, Merdaad <Merd...@discussions.microsoft.com> wrote:
> OK. Italked to the ISP where the server is.
>
> They say it's a IE 7.0 issue!
> I tried this samething for myself and on Firefox I don't see the error while
> on IE 7.0 I consistently do.
>


Hard to believe :-) Maybe you should try to clean the cache in IE, or
test it from another client. The Fiddler tool (see the last link)
might be also useful...

 
Reply With Quote
 
=?Utf-8?B?TWVyZGFhZA==?=
Guest
Posts: n/a
 
      13th Jun 2007
Hi again,

I will email you the link so you could try it for yourself.

Thanks for all your help.

M

"Alexey Smirnov" wrote:

> On Jun 12, 1:14 am, Merdaad <Merd...@discussions.microsoft.com> wrote:
> > OK. Italked to the ISP where the server is.
> >
> > They say it's a IE 7.0 issue!
> > I tried this samething for myself and on Firefox I don't see the error while
> > on IE 7.0 I consistently do.
> >

>
> Hard to believe :-) Maybe you should try to clean the cache in IE, or
> test it from another client. The Fiddler tool (see the last link)
> might be also useful...
>
>

 
Reply With Quote
 
akoorvqjhh
Guest
Posts: n/a
 
      22nd Jun 2007
Hello! Good Site! Thanks you! zvaeqqmrcgxggq
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Error Message - Page error in non page area =?Utf-8?B?RG9u?= Windows Vista Hardware 2 4th Aug 2008 04:20 PM
STOP 0x50 error...page fault non page error =?Utf-8?B?bGFkeWJ1Z2NsZw==?= Windows XP Help 2 6th Apr 2007 03:38 AM
Page Wizard: unable to create your data access page error. =?Utf-8?B?YmF0em1hcm9vbjcwNw==?= Microsoft Access 0 12th Jul 2006 02:49 AM
IE error Page Can Not Be Displayed, then page fault error Tim Windows XP Internet Explorer 2 25th Jun 2004 04:36 PM
Explorer opens part of page, then runs to DNS/Cannot Display page error Jordan Windows XP Internet Explorer 0 19th Dec 2003 03:45 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:04 AM.