473,778 Members | 4,256 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problems with ASP.Net object and Javascript

I have a function:

function SalaryDisplay(m e)
{
var salaryMinLabel = document.getEle mentById("Salar yMin");
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 4613
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 AssignmentExpre ssion ]
| 1. Evaluate ElementList.
Evaluate production `ElementList : Elision_opt
AssignmentExpre ssion' | 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)+Resu lt(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 AssignmentExpre ssion (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_properti es_ 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 AssignmentExpre ssion", 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*********@we b.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 AssignmentExpre ssion 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 AssignmentExpre ssion", 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
"ElementLis t : Elision_opt AssignmentExpre ssion", 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/rasterTriangleD OM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #52
Lasse Reichstein Nielsen wrote:
Thomas 'PointedEars' Lahn <Po*********@we b.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 AssignmentExpre ssion 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 AssignmentExpre ssion", 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
"ElementLis t : Elision_opt AssignmentExpre ssion", 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*********@we b.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.mozill a.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/rasterTriangleD OM.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 AssignmentExpre ssion", 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
"ElementLis t : Elision_opt AssignmentExpre ssion", 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(ToUint 32(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 "associativ e 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':un defined,
'4294967295':0,
'length':429496 7296
}

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

{
'4294967295':0,
'length':429496 7296
}

- 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
6090
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 loss even though I seem to be allocaitng everything; help would be *vastly* appreciated. What am I doing wrong here? I thought I was doing everything correctly (setting things to null, for example) but none of the memory seems to get replaced. ...
5
1549
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 gotoNum=document.teamSelectionF.teamSelectionS.options.value; pageNav="http://www.tandtsports.com"; pageNav="http://www.tandtsports.com/Cougars.html";
55
4215
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 with this sort of thing? I know some of these potential users are with big companies and am wondering if anyone had real problems with that.
10
19176
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 am passing to it. Everything works fine on IE 6. Here's a couple samples of what I am doing: // using GET url = 'http://www.myserver.com/cgi-bin/funct?key1=value1&key2=value2'
2
2099
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: function A(){ var _this = this; this.a = 10;
1
4954
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: http://munich.schwarz-interactive.de/autocomplete.aspx
1
3426
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 on my local machine. In other words... The WEB is really not involved. What I have so far works with a Netscape Browser but what I really need is for it to work in the IE browser or one that I will create
14
2818
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 shows all the properties, weeks available, pricing, etc. for a particular area of Europe. The data varies widely depending on the region; at times there will be 50 properties, and at other times only a half dozen. The cross referencing of...
1
1867
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 s...l...o...w to respond. So I thought I would ask about it here. If I knew more about how this code works, I could probably figure out most of the problems myself, but with this one, I am clueless! =D First question: This may be my own...
10
1855
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 just leave a blue page - seems like it heavily rely on JS. Still, me and friends having problems and orkut seems just to ignore it. I am sure, that other poeple have problems, and I really wonder what
0
9465
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10068
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9923
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8954
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7474
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6723
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5497
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4031
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3627
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.