473,320 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,320 software developers and data experts.

Problems with ASP.Net object and Javascript

I have a function:

function SalaryDisplay(me)
{
var salaryMinLabel = document.getElementById("SalaryMin");
salaryMinLabel.value = 200;
alert("after setting salaryMinLabel = " + salaryMinLabel.value);
}

I also have an asp.net object:

<asp:label id="SalaryMin" runat="server" />

Which renders into:

<span id="SalaryMin"></span>

The function seems to find the span fine. The alert box shows that it is
set to 200. But the web page never shows it.

Is there a problem setting the span element?

Thanks,

Tom
Jul 23 '05
54 4468
Thomas 'PointedEars' Lahn wrote:
Lasse Reichstein Nielsen wrote:
The array literal [0,,2] should not have a property called "1"
according to the ECMAScript standard. [...]
Yes, it should.


No it should not. Even in your description of the process you will not
find a call to the Array [[Put]] method with "1" as its property name.

<snip> [ ElementList , Elision_opt AssignmentExpression ]
| 1. Evaluate ElementList.
Evaluate production `ElementList : Elision_opt
AssignmentExpression' | 1. Create a new array as if by the
expression new Array(). => {...} == []
This newly created Array object, disregarding its internal properties
and the properties it inherits through its prototype, has one property
with the name 'length' and the value zero.

<snip> | 5. Call the [[Put]] method of Result(1) with arguments
Result(2) | and Result(4).
=> [].[[Put]](0, 0)
This is the first [[Put]] call on the Array object, creating a property
with the name "0" and the value 0.

<snip> | 6. Call the [[Put]] method of Result(1) with arguments
| (Result(2)+Result(5)) and Result(4).
=> [0].[[Put]](1+1, 2)
=> [0].[[Put]](2, 2)
This is the second call to the Array's [[Put]] method, it creates a
property with the name "2" and the value 2.
| 8.6.2.2 [[Put]] (P, V)
This is not the special Array [[Put]] method's algorithm. For that see
section 15.4.5.1. The main difference between the Object [[Put]] method
and the array [[Put]] method is the handling of property names that
correspond with 32 bit unsigned integers with regard to interactions
with the Array's - length - property.

<snip> | 7. Return.

Now you assume that step 6.6. results in an object with the following
structure and content:

{"0": 0,
"2": 2,
...
}
It would be more accurate to characterise this object as;-

{
'0':0,
'2':2,
'length':3
}

(baring in mind that this object would have the Array prototype rather
than the Object prototype)

That is; two calls to the [[Put]] method have created two named
properties on the Array object, and the pre-existing - length - property
has been adjusted to have the value 3.
However, ECMAScript 3 also states:

| 11.1.4 Array Initialiser
| [...]
| Array elements may be elided at the beginning, middle or end
| of the element list. Whenever a comma in the element list
| is not preceded by an AssignmentExpression (i.e., a comma
| at the beginning or after another comma), the missing array
| element contributes to the length of the Array and increases
| the index of subsequent elements. Elided array elements are
| not defined.
This describes how the Array's _length_ property may be altered but does
not imply that any _named_properties_ will be created on the Array
object beyond those specified in the algorithms you cited above.
Since in "[0, , 2]", the second "comma in the element list
is not preceded by an AssignmentExpression", to be exact,
is "a comma [...] after another comma", "the missing array
element ..." [continue reading above]. And so:

| 7. Return Result(1)
=> [0, undefined, 2]
This is a less clear description of the resulting array than the Object
literal notation above. No assignment has been made with the name "1" so
the Array object does not have a property of that name, and not having a
property of that name that non-existent property does not have the value
Undefined. While the resulting Array will effectively/practically be the
same as the Array literal listed above that is only because reading a
property of an object using a name that does not correspond with a named
property of that object will return undefined.
The `in' operation returns `true' if/while the second operand
has a property named as the first operand;
True, where 'has a property' is determined by the Array object's
internal [[HasProperty]] method.

<quote cite="ECMA262 3rd edition, Section 8.6.2.4">
8.6.2.4 [[HasProperty]] (P)

When the [[HasProperty]] method of O is called with property
name P, the following steps are taken:

1. If O has a property with name P, return true.
2. If the [[Prototype]] of O is null, return false.
3. Call the [[HasProperty]] method of [[Prototype]] with
property name P.
4. Return Result(3).
</quote>

But as at no point in the creation of the Array object from the Array
literal was a property with the name "1" created (and its prototype does
not have one either), [[HasProperty]]('1') returns false.
since that property ("1") exists
here, it returns `true'.


If at no point in the algorithm applied to the creation of the Array
from the Array literal there was a call to [[Put]]('1', x) then the
property does _not_ exist.

<snip>
The error in FireFox/Gecko's ECMAScript implementation is
that that it does, it just has the value "undefined".


It is not an error :)


Following the ECMA algorithms for the creation of Array objects from
Array literals, and the - in - operator, the behaviour of FireFox, as
described, does not produce the correct outcome. That sounds like an
error to me.

(For future reference, when Lasse asserts that the ECMA production rules
and algorithms should produce results that do not correspond with your
expectations it is best to double and triple check against ECMA 262,
because I have not known Lasse to be wrong on the subject to date.)

Richard.
Jul 23 '05 #51
Thomas 'PointedEars' Lahn <Po*********@web.de> writes:
Lasse Reichstein Nielsen wrote:
The array literal [0,,2] should not have a property called "1"
according to the ECMAScript standard. [...]
Yes, it should. As of ECMAScript 3, Subsection 11.1.4 (Array Initialiser),
`[0,,2]' is the literal notation of an Array object with the following
structure and content (written as an object literal):


[snip derivation]
Now you assume that step 6.6. results in an object with the following
structure and content:

{"0": 0,
"2": 2,
...
}
I do. It does. Your derivation is absolutely correct. The structure
is exactly {"0":0, "2":2, "length":3} plus the attributes inherited
from Array.prototype.

Looking at the derivation, one can notice that a call to [[Put]]
is only made once for each AssignmentExpression in the derivation.
That's one for each of "0" and "2", so there won't be any property
named "1".
However, ECMAScript 3 also states:

| 11.1.4 Array Initialiser
Snip explanation of how elided elements work: they increase the
indices of the following elements without.
| Elided array elements are not defined.

Since in "[0, , 2]", the second "comma in the element list is not preceded
by an AssignmentExpression", to be exact, is "a comma [...] after another
comma", "the missing array element ..." [continue reading above]. And so:

| 7. Return Result(1)
=> [0, undefined, 2]
No, return the array created in line 1. of the rule for
"ElementList : Elision_opt AssignmentExpression", which has since
been modified by calls to [[Put]](0,0) and [[Put]](2,2). It has
no property called "1".

The array literal [0, undefined, 2] has a different derivation,
one that, while evaluated, makes three calls to [[Put]] on the array,
the second with the two arguments, 1 and undefined.
The `in' operation returns `true' if/while the second operand has a
property named as the first operand; since that property ("1") exists
here, it returns `true'. (The property's value does not matter, as
you just explained.)
Except that it doesn't exist, because no call to [[Put]] have been
made with a first argument of 1.

[Firefox evaluates "1 in [0,,2]" to true] It is not an error :)


Sure it is :)

Both IE and Opera gives the correct result.
/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #52
Lasse Reichstein Nielsen wrote:
Thomas 'PointedEars' Lahn <Po*********@web.de> writes:
Lasse Reichstein Nielsen wrote:
The array literal [0,,2] should not have a property called "1"
according to the ECMAScript standard. [...] Yes, it should. As of ECMAScript 3, Subsection 11.1.4 (Array
Initialiser), `[0,,2]' is the literal notation of an Array object with
the following structure and content (written as an object literal):


[snip derivation]
Now you assume that step 6.6. results in an object with the following
structure and content:

{"0": 0,
"2": 2,
...
}


I do. It does. Your derivation is absolutely correct. The structure
is exactly {"0":0, "2":2, "length":3} plus the attributes inherited
from Array.prototype.

Looking at the derivation, one can notice that a call to [[Put]]
is only made once for each AssignmentExpression in the derivation.
That's one for each of "0" and "2", so there won't be any property
named "1".


I included the derivation only for matters of completeness. My point is
that its result does not really matter for a real implementation since
there is special behavior defined, see below.
However, ECMAScript 3 also states:
| 11.1.4 Array Initialiser


Snip explanation of how elided elements work: they increase the
indices of the following elements without.


I don't think so.
| Elided array elements are not defined.
Together with what you snipped, that means they may exist and have the
value of `undefined', yes?
Since in "[0, , 2]", the second "comma in the element list is not
preceded by an AssignmentExpression", to be exact, is "a comma [...]
after another comma", "the missing array element ..." [continue reading
above]. And
so:

| 7. Return Result(1)
=> [0, undefined, 2]


No, return the array created in line 1. of the rule for
"ElementList : Elision_opt AssignmentExpression", which has since
been modified by calls to [[Put]](0,0) and [[Put]](2,2). It has
no property called "1".


You suggest it to have a length (number of elements) of 3
but do not have a second element. That's ridiculous.
The array literal [0, undefined, 2] has a different derivation,
one that, while evaluated, makes three calls to [[Put]] on the array,
the second with the two arguments, 1 and undefined.
Following described *evaluation process* in ECMAScript, yes.
The `in' operation returns `true' if/while the second operand has a
property named as the first operand; since that property ("1") exists
here, it returns `true'. (The property's value does not matter, as
you just explained.)


Except that it doesn't exist, because no call to [[Put]] have been
made with a first argument of 1.


Does not matter. As a specialty of Array objects which are defined to
be dynamic, there should be (and is in JavaScript) a property named "1"
created (unless you want to complicate usage).
[Firefox evaluates "1 in [0,,2]" to true]
It is not an error :)


Sure it is :)

Both IE and Opera gives the correct result.


I don't think it is an error and I don't think there is such as a correct
result here. Both IE and Opera do not implement Netscape JavaScript; IE
implements M$ JScript, Opera implements something else. ECMAScript does
not explicitely forbid the "1" property to be created implicitely. And
as Richard recently pointed out,

| [...] a conforming implementation of ECMAScript is permitted to
| provide properties not described in this specification [...]
|
| A conforming implementation of ECMAScript is permitted to support
| program [...] syntax not described in this specification.

AIUI, that includes creating properties/elements with value `undefined'
implicitely for Array objects if they are elided in an Array initialiser.
PointedEars
Jul 23 '05 #53
Thomas 'PointedEars' Lahn <Po*********@web.de> writes:

[Array [0,,2]]
You suggest it to have a length (number of elements) of 3
but do not have a second element. That's ridiculous.
You are free to think that, but it is how it is defined.

Doing:
var a = [0];
a[1000] = 42;
alert(1 in a);

will yield false, even in FireFox, so it's not completely ridiculous
to have a sparse array with length==1001 and only two defined
properties.

The definition of [[Put]] on arrays (section 15.4.5.1) specifies how
the length property is set. It is an invariant that the length
property of an array is at least one larger than the largest "array
index" (normalized integer < 2^32) property (section 15.4), but it can
be larger.
I don't think it is an error and I don't think there is such as a correct
result here. Both IE and Opera do not implement Netscape JavaScript; IE
implements M$ JScript, Opera implements something else. ECMAScript does
not explicitely forbid the "1" property to be created implicitely. And
as Richard recently pointed out, .... AIUI, that includes creating properties/elements with value `undefined'
implicitely for Array objects if they are elided in an Array initialiser.


Ok, so your argument is that having a standard operation do more than
what the standard requires is not necessarily an error. I am not sure
I can agree to that.

Section 2 (Conformance) states that a conforming implementation must
supporty the semantics described in the specification. The semantics
of the literal [0,,2] is clearly specified. Giving the same expression
a different semantics would not be compliant. An "extension of the
semantics" is, to me, a different semantics.

There is a difference between extending the language, be it with extra
functions, objects, properties or even extra functionality for
existing functions (as they warn against), and changing the semantics
for the existing language. The evaluation of the array literal is
fully within the core language, and should have the specified
semantics.
Anyway, it's in bugzilla
<URL:https://bugzilla.mozilla.org/show_bug.cgi?id=260106>
For another, perhaps more clearly defined, bug in Mozilla's ECMAScript:
---
var x = [0];
x[2] = 2; // now: 1 in x == false
x.sort();
alert(2 in x); // should be false, is true.
---
Sort should only rearrange existing properties, it should not create
new. What happens here is that the result becomes [0,2,undefined],
and not [0,2,] as it should (Section 15.4.4.11, especially first dot
describing the returned object's properties).

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com DHTML Death Colors:
<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without
judgement merely degrades the spirit divine.'
Jul 23 '05 #54
Thomas 'PointedEars' Lahn wrote:
Lasse Reichstein Nielsen wrote:
Thomas 'PointedEars' Lahn wrote: <snip>
Since in "[0, , 2]", the second "comma in the element
list is not preceded by an AssignmentExpression", to be
exact, is "a comma [...] after another comma", "the
missing array element ..." [continue reading above]. And
so:

| 7. Return Result(1)
=> [0, undefined, 2]
No, return the array created in line 1. of the rule for
"ElementList : Elision_opt AssignmentExpression", which
has since been modified by calls to [[Put]](0,0) and
[[Put]](2,2). It has no property called "1".


You suggest it to have a length (number of elements) of 3
but do not have a second element. That's ridiculous.


Maybe that is a consequence of reading the algorithm for the Object's
[[Put]] method where the algorithm for the Array [[Put]] method really
applies to the process:-

<quote cite="ECMA 262 3rd edition Section 15.4.5.1">
15.4.5.1 [[Put]] (P, V)

Array objects use a variation of the [[Put]] method used
for other native ECMAScript objects (section 8.6.2.2).

Assume A is an Array object and P is a string.

When the [[Put]] method of A is called with property P
and value V, the following steps are taken:

1. Call the [[CanPut]] method of A with name P.
2. If Result(1) is false, return.
3. If A doesn't have a property with name P, go to step 7.
4. If P is "length", go to step 12.
5. Set the value of property P of A to V.
6. Go to step 8.
7. Create a property with name P, set its value to V and
give it empty attributes.
8. If P is not an array index, return.
9. If ToUint32(P) is less than the value of the length
property of A, then return.
10. Change (or set) the value of the length property of A
to ToUint32(P)+1.
11. Return.
12. Compute ToUint32(V).
13. If Result(12) is not equal to ToNumber(V), throw a
RangeError exception.
14. For every integer k that is less than the value of the
length property of A but not less than Result(12), if A
itself has a property (not an inherited property) named
ToString(k), then delete that property.
15. Set the value of property P of A to Result(12).
16. Return.
</quote>

Which needs to be suplimented with the defenition of "array index"
provided at the beginning of section 15.4:-

<quote cite="ECMA 262 3rd edition section 15.4">
A property name P (in the form of a string value) is an array
index if and only if ToString(ToUint32(P)) is equal to P and
ToUint32(P) is not equal to [1] 2<sup>32</sup> -1.
</quote>
[1: two to the power of 32, minus one]

So given the code:-

var a = new Array();
a[100] = 1;

- the resulting array object resembles:-

{
'100':1,
'length':101
}

- because the property name qualifies as an "array index" and the
[[Put]] algorithm assigns a value to the Array's - length - property
that is one greater than the numeric equivalent of the property name.

<snip>
The `in' operation returns `true' if/while the second
operand has a property named as the first operand; since
that property ("1") exists here, it returns `true'.
(The property's value does not matter, as you just explained.)


Except that it doesn't exist, because no call to [[Put]] have
been made with a first argument of 1.


Does not matter. As a specialty of Array objects which are
defined to be dynamic, there should be (and is in JavaScript)
a property named "1" created (unless you want to complicate
usage).


All objects ECMAScript, including arrays, are augmented instances of the
native ECMAScript object, which supports the dynamic adding of named
properties at runtime.

The augmentations that apply to the Array objects are that an
alternative [[Put]] method is used, and the constructor adds a -
length - property and initialises it to zero. And that, combined with
the normal behaviour of the Object's [[Get]] method (returning -
undefined - when an object does not have a property with the requested
name), is all that is necessary to turn a dynamic object into a dynamic
sparse Array implementation.

These three details provide the array-ness of an Array, end explain why
array-ness has nothing to do with the use of an Object as a "hashtable"
or "associative array".

ECMAScript simply does not need to create a property with the name "1"
and the value - undefined - for the Array literal - [ 0, , 2 ] -
because reading a property with that name will return - undefined -
whenever the property does not exist.

And there is a great deal to be said for a dynamic spars array
implementation not creating actual named properties for all 'elements'
in an Array. Consider:-

var a = new Array();
a[4294967295] = 0;

If all the named properties were created on the Array object the result
would resemble:-

{
'0':undefined,
'1':undefined,
...
'4294967294':undefined,
'4294967295':0,
'length':4294967296
}

- and probably exceed the entire memory map in 32 bit operating system.
While;-

{
'4294967295':0,
'length':4294967296
}

- is a trivial object.

In terms of the normal use of an Array there would be no difference
(assuming the resources where available to accommodate the first, and
disregarding the performance differences in property resolution).

It is clearly not a good idea to add named properties to an Array to
fill in gaps when an element is created with a large 'array index' . So
the Array should be able to accommodate having many fewer actual
properties than its - length - property might imply. And under those
circumstances there is no reason to expect special behaviour form the
creation of an Array using an Array literal.

<snip> ... . ECMAScript does not explicitely forbid the "1"
property to be created implicitely. And as Richard
recently pointed out,

| [...] a conforming implementation of ECMAScript is
| permitted to provide properties not described in this
| specification [...]
|
| A conforming implementation of ECMAScript is permitted
| to support program [...] syntax not described in this
| specification.

AIUI, that includes creating properties/elements with
value `undefined' implicitely for Array objects if they
are elided in an Array initialiser.


The conformance section has two 'Must' paragraphs followed by two 'May'
(expressed as "is permitted to") paragraphs. While the algorithms that
define the semantics certainly do not result in the creation of a
property named "1" it might be argued that freedom to provide additional
properties provided by the 'May' paragraphs could accommodated its
creation during the process.

It might also be argued that where an algorithm for a process describes
the changes made to an object during that process the changes made to
that object should not exceed those stated in the algorithm (at least to
the extent that those changes are publicly determinable).

It makes perfect sense to me that the language should allow for
additional named properties of an array that apply to all Array objects
from their creation. But adding a property to an object during a
specified process seems to require additional steps in the applicable
algorithms, and additional steps in an algorithm means that it is a
different algorithm, and so does not conform to ECMA 262.

Richard.
Jul 23 '05 #55

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

Similar topics

5
by: Justice | last post by:
Currently I'm doing some experimenting with the XMLHTTP object in Javascript. Now, the XMLHttp object is asynchronous (at least in this case), and the following code causes a significant memory...
5
by: Shawn Modersohn | last post by:
For the script: <script language="JavaScript"> function pullPage(){ var arrayLength=document.teamSelectionF.teamSelectionS.length; var pageNav = new Array(arrayLength); var...
55
by: drhowarddrfine | last post by:
I'm working on a web site that could use some control using js but am concerned about what problems I may have with potential users having their js turned off. Has anyone had any serious problems...
10
by: Danny | last post by:
Hi all, I am having some odd problems with AJAX on Firefox (1.5). When I use GET as the request method everything works ok, but when I do a POST the remote function doesn't get the parameters I...
2
by: beseecher | last post by:
Hi, In my research in the javascript language I have encountered problems with implementing prototype inheritance while preserving private methods functioning properly. Here is an example: ...
1
by: Bob | last post by:
Hi, Hope you can help me with this one. I'm at my wits end. I'm trying to create an intelligent edit-box like the excellent "Customer" one at the URL: ...
1
by: kevin.a.sweeney | last post by:
I would like to open an application from a hyperlink on a webpage. 1. the webpage is located on my local machine. 2. the application is located on my local machine. 3. the application will run...
14
by: julie.siebel | last post by:
I've been wrestling with a really complex page. All the data is drawn down via SQL, the page is built via VBScript, and then controlled through javascript. It's a page for a travel company that...
1
RMWChaos
by: RMWChaos | last post by:
I grabbed this "Rock Solid addEvent" code from this site, which is based on Mark Wubben's event-cache code. (These links for reference only.) I am having two problems with it, and the webmaster is...
10
by: jodleren | last post by:
Hi I know, that there are a lot of people having problems with orkut.com, errors like "object expected" and named objects missing. When loading the site can generate some 10 errors, and still...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

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.