473,813 Members | 3,424 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Please solve this.

It says invalid expression term &&

protected void GridView1_RowDa taBound(object sender,
GridViewRowEven tArgs e)
{

if
((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);
{

e.Row.Cells[0].CssClass = "sdgStatusOrang e";

}

It says invalid expression term &&

Jun 21 '07
14 1417
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:C3******** *************** ***********@mic rosoft.com...
Take it easy mate ;-)
<puts down the mouse and walks slowly away from the computer...>
--
http://www.markrae.net

Jun 22 '07 #11
;-)
--
Milosz
"Mark Rae" wrote:
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:C3******** *************** ***********@mic rosoft.com...
Take it easy mate ;-)

<puts down the mouse and walks slowly away from the computer...>
--
http://www.markrae.net

Jun 22 '07 #12
re:
!Take it easy mate ;-)

Has anything I've written implied that I'm not ?

;-)

re:
!his "if" statement could be simplified changed to:

I agree, but the problem, *as stated*, won't be resolved just by changing the parens,
because, if the condition (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) is *false*,
changing the parens won't help him.

He needs to do both what you suggested *and* what I suggested,
if the original conditions remain as stated by him.

Whether he should change his conditions, and not leave them as stated, is another issue.

;-)

re:
!also note he used && therefore there is not point to test the second operand

Again, what if the first operand is false ?

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:C3******** *************** ***********@mic rosoft.com...
Juan,

Come on, i can't see any logical exlanation in changing && operator to & for
this case :-). First of all, logically, his "if" statement could be
simplified changed to:
if (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17)
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}
simply because the only numbers that meet both criteria are >= 17. Second,
if the first operand (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) would
return false, second could not be true (logically). Please also note he used
&& therefore there is not point to test the second operand as you're trying
to point out. Third, it was definitely compiler error (syntax error) which
has nothing to do with runtime evaluation.

Take it easy mate ;-)

Best regards
--
Milosz
"Juan T. Llibre" wrote:
>re:
!Did you mean if the text in cell equals "14"

Yes.

re:
!then statement inside is not going to be reached, simply because the first
!condition is false, and short-circuit evaluation for && operator skips the second operand.

That's exactly what I explained...and that's an undesirable "feature".
That's why he needs to change the operator.

re:
!I understand your confusion

There's no confusion.

He should change both the parens *and* the operator,
the first as you suggest; the second as I suggest.

Doing that will cover all the bases for him.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:71******* *************** ************@mi crosoft.com...
Good morning Juan

Did you mean if the text in cell equals "14"

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

then statement inside is not going to be reached, simply because the first
condition is false, and short-circuit evaluation for && operator skips the
second operand. I understand your confusion as I have seen this guy's
previous post, but in this case it was just misplaced parentheses ;-)
--
Milosz
"Juan T. Llibre" wrote:

Hi, Milosz,

In that case, what happens if Convert.ToInt32 (e.Row.Cells[2].Text = 14) ?


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:85******* *************** ************@mi crosoft.com...
Hi Juan,

In this case, "invalid expression term &&" is caused definitely by misplaced
parentheses, because it is a compiler message ;-) (evaluation would be done
at the runtime). Second, bitwise and & operator will give the same result
(apart from the fact short-circuit is not apllicable) because true & true =
true, false & true = false, false & false = false. Therefore, it should be
corrected to:

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

Best regards
--
Milosz
"Juan T. Llibre" wrote:

re:
((Convert.ToIn t32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);

You need to use the "regular" AND operator.

Try :

((Convert.ToIn t32(e.Row.Cells[2].Text)>=15))&(C onvert.ToInt32( e.Row.Cells[2].Text)>=17);

If you use && and e.Row.Cells[2].Text)>=15 is false, e.Row.Cells[2].Text)>=17
is not evaluated (because the result of the AND operation is false no matter what the
value of e.Row.Cells[2].Text)>=17 may be).

This is known as "short-circuit" evaluation...bu t it requires *both* operands to be true.
In your code, that is not alsways the case.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
<bb****@yahoo. comwrote in message
news:11******* **************@ e9g2000prf.goog legroups.com...
It says invalid expression term &&

protected void GridView1_RowDa taBound(object sender,
GridViewRowEven tArgs e)
{

if
((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);
{

e.Row.Cells[0].CssClass = "sdgStatusOrang e";

}

It says invalid expression term &&





Jun 22 '07 #13
Howdy Juan,

I just wanted to point out that applying & instead of && wouldn't change
anything, because he's had syntax error.
Again, what if the first operand is false ?
I have answered this question already. For both operators (&& and &) you
will get the same result.

1. && operator

Let simplify it

string str = "12";

(Convert.ToInt3 2(str) >= 15) &&
(Convert.ToInt3 2(str) >= 17))

cis equivalent to

(12 >= 15) && (12 >= 17)
false && false = false

please note it apllies for shortcirtuit evaluation as well

2. & operator

false & false = false

which is the same result.

As you can see apllying the only difference between && and & for logical
arguments is that bitwise AND does not use short circuit evaluation.

That's why forcing second operand to be evaluated would not change anything
at all.

Hope it is clear now.

Best regards Juan
--
Milosz
"Juan T. Llibre" wrote:
re:
!Take it easy mate ;-)

Has anything I've written implied that I'm not ?

;-)

re:
!his "if" statement could be simplified changed to:

I agree, but the problem, *as stated*, won't be resolved just by changing the parens,
because, if the condition (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) is *false*,
changing the parens won't help him.

He needs to do both what you suggested *and* what I suggested,
if the original conditions remain as stated by him.

Whether he should change his conditions, and not leave them as stated, is another issue.

;-)

re:
!also note he used && therefore there is not point to test the second operand

Again, what if the first operand is false ?

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:C3******** *************** ***********@mic rosoft.com...
Juan,

Come on, i can't see any logical exlanation in changing && operator to & for
this case :-). First of all, logically, his "if" statement could be
simplified changed to:
if (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17)
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}
simply because the only numbers that meet both criteria are >= 17. Second,
if the first operand (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) would
return false, second could not be true (logically). Please also note he used
&& therefore there is not point to test the second operand as you're trying
to point out. Third, it was definitely compiler error (syntax error) which
has nothing to do with runtime evaluation.

Take it easy mate ;-)

Best regards
--
Milosz
"Juan T. Llibre" wrote:
re:
!Did you mean if the text in cell equals "14"

Yes.

re:
!then statement inside is not going to be reached, simply because the first
!condition is false, and short-circuit evaluation for && operator skips the second operand.

That's exactly what I explained...and that's an undesirable "feature".
That's why he needs to change the operator.

re:
!I understand your confusion

There's no confusion.

He should change both the parens *and* the operator,
the first as you suggest; the second as I suggest.

Doing that will cover all the bases for him.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:71******** *************** ***********@mic rosoft.com...
Good morning Juan

Did you mean if the text in cell equals "14"

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

then statement inside is not going to be reached, simply because the first
condition is false, and short-circuit evaluation for && operator skips the
second operand. I understand your confusion as I have seen this guy's
previous post, but in this case it was just misplaced parentheses ;-)
--
Milosz
"Juan T. Llibre" wrote:

Hi, Milosz,

In that case, what happens if Convert.ToInt32 (e.Row.Cells[2].Text = 14) ?


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:85******** *************** ***********@mic rosoft.com...
Hi Juan,

In this case, "invalid expression term &&" is caused definitely by misplaced
parentheses, because it is a compiler message ;-) (evaluation would be done
at the runtime). Second, bitwise and & operator will give the same result
(apart from the fact short-circuit is not apllicable) because true & true =
true, false & true = false, false & false = false. Therefore, it should be
corrected to:

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

Best regards
--
Milosz
"Juan T. Llibre" wrote:

re:
((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);

You need to use the "regular" AND operator.

Try :

((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&(C onvert.ToInt32( e.Row.Cells[2].Text)>=17);

If you use && and e.Row.Cells[2].Text)>=15 is false, e.Row.Cells[2].Text)>=17
is not evaluated (because the result of the AND operation is false no matter what the
value of e.Row.Cells[2].Text)>=17 may be).

This is known as "short-circuit" evaluation...bu t it requires *both* operands to be true.
In your code, that is not alsways the case.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaÃà ‚±ol : http://asp.net.do/foros/
=============== =============== ========
<bb****@yahoo.c omwrote in message
news:11******** *************@e 9g2000prf.googl egroups.com...
It says invalid expression term &&

protected void GridView1_RowDa taBound(object sender,
GridViewRowEven tArgs e)
{

if
((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);
{

e.Row.Cells[0].CssClass = "sdgStatusOrang e";

}

It says invalid expression term &&





Jun 22 '07 #14
Thanks for clearing that up, Milosz.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:89******** *************** ***********@mic rosoft.com...
Howdy Juan,

I just wanted to point out that applying & instead of && wouldn't change
anything, because he's had syntax error.
>Again, what if the first operand is false ?

I have answered this question already. For both operators (&& and &) you
will get the same result.

1. && operator

Let simplify it

string str = "12";

(Convert.ToInt3 2(str) >= 15) &&
(Convert.ToInt3 2(str) >= 17))

cis equivalent to

(12 >= 15) && (12 >= 17)
false && false = false

please note it apllies for shortcirtuit evaluation as well

2. & operator

false & false = false

which is the same result.

As you can see apllying the only difference between && and & for logical
arguments is that bitwise AND does not use short circuit evaluation.

That's why forcing second operand to be evaluated would not change anything
at all.

Hope it is clear now.

Best regards Juan
--
Milosz
"Juan T. Llibre" wrote:
>re:
!Take it easy mate ;-)

Has anything I've written implied that I'm not ?

;-)

re:
!his "if" statement could be simplified changed to:

I agree, but the problem, *as stated*, won't be resolved just by changing the parens,
because, if the condition (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) is *false*,
changing the parens won't help him.

He needs to do both what you suggested *and* what I suggested,
if the original conditions remain as stated by him.

Whether he should change his conditions, and not leave them as stated, is another issue.

;-)

re:
!also note he used && therefore there is not point to test the second operand

Again, what if the first operand is false ?

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:C3******* *************** ************@mi crosoft.com...
Juan,

Come on, i can't see any logical exlanation in changing && operator to & for
this case :-). First of all, logically, his "if" statement could be
simplified changed to:
if (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17)
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}
simply because the only numbers that meet both criteria are >= 17. Second,
if the first operand (Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) would
return false, second could not be true (logically). Please also note he used
&& therefore there is not point to test the second operand as you're trying
to point out. Third, it was definitely compiler error (syntax error) which
has nothing to do with runtime evaluation.

Take it easy mate ;-)

Best regards
--
Milosz
"Juan T. Llibre" wrote:

re:
!Did you mean if the text in cell equals "14"

Yes.

re:
!then statement inside is not going to be reached, simply because the first
!condition is false, and short-circuit evaluation for && operator skips the second operand.

That's exactly what I explained...and that's an undesirable "feature".
That's why he needs to change the operator.

re:
!I understand your confusion

There's no confusion.

He should change both the parens *and* the operator,
the first as you suggest; the second as I suggest.

Doing that will cover all the bases for him.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:71******* *************** ************@mi crosoft.com...
Good morning Juan

Did you mean if the text in cell equals "14"

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

then statement inside is not going to be reached, simply because the first
condition is false, and short-circuit evaluation for && operator skips the
second operand. I understand your confusion as I have seen this guy's
previous post, but in this case it was just misplaced parentheses ;-)
--
Milosz
"Juan T. Llibre" wrote:

Hi, Milosz,

In that case, what happens if Convert.ToInt32 (e.Row.Cells[2].Text = 14) ?


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:85******* *************** ************@mi crosoft.com...
Hi Juan,

In this case, "invalid expression term &&" is caused definitely by misplaced
parentheses, because it is a compiler message ;-) (evaluation would be done
at the runtime). Second, bitwise and & operator will give the same result
(apart from the fact short-circuit is not apllicable) because true & true =
true, false & true = false, false & false = false. Therefore, it should be
corrected to:

if (
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 15) &&
(Convert.ToInt3 2(e.Row.Cells[2].Text) >= 17))
{
e.Row.Cells[0].CssClass = "sdgStatusOrang e";
}

Best regards
--
Milosz
"Juan T. Llibre" wrote:

re:
((Convert.ToIn t32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);

You need to use the "regular" AND operator.

Try :

((Convert.ToIn t32(e.Row.Cells[2].Text)>=15))&(C onvert.ToInt32( e.Row.Cells[2].Text)>=17);

If you use && and e.Row.Cells[2].Text)>=15 is false, e.Row.Cells[2].Text)>=17
is not evaluated (because the result of the AND operation is false no matter what the
value of e.Row.Cells[2].Text)>=17 may be).

This is known as "short-circuit" evaluation...bu t it requires *both* operands to be
true.
In your code, that is not alsways the case.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaÃà ‚±ol : http://asp.net.do/foros/
============== =============== =========
<bb****@yahoo. comwrote in message
news:11******* **************@ e9g2000prf.goog legroups.com...
It says invalid expression term &&

protected void GridView1_RowDa taBound(object sender,
GridViewRowEven tArgs e)
{

if
((Convert.ToInt 32(e.Row.Cells[2].Text)>=15))&&( Convert.ToInt32 (e.Row.Cells[2].Text)>=17);
{

e.Row.Cells[0].CssClass = "sdgStatusOrang e";

}

It says invalid expression term &&






Jun 22 '07 #15

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

Similar topics

2
1277
by: Deven Oza | last post by:
Hi every one can anybody solve this problem for me. What initial values of a and c are required such that the final values of a and b are: a = 32 b = 4 …
5
2056
by: Deven Oza | last post by:
Hi every one can anybody solve this problem for me. What initial values of a and c are required such that the final values of a and b are: a = 32 b = 4 …
12
1819
by: ashokingroups | last post by:
Hi, Good morning to all, :-) One interviewer asked me the following question He has given the following two tables including data. DEPT TABLE ------------------- DEPT(DEPTNO, DNAME, LOC) DEPT(10, 'ACCOUNTING, 'NEW YORK')
2
1342
by: gsreenathreddy | last post by:
Hi! Please solve this query in employee table in scott user i would like view the details of all the employees (empno, ename )who are working under which manager(mgr) .with his manager name and manager employee id.
1
1000
by: itsvineeth209 | last post by:
Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the...
2
2379
by: itsvineeth209 | last post by:
My task is to create login control without using login control in tools. I shouldnt use sqldatasource or any other. I should use only data sets, data adapters and data readers etc. U had created table login with fields username(varchar(50)), password(varchar(50)), firstname(varchar(50)), lastname(varchar(50)). U had to display username , first name, last name in default.aspx page after login. One more condition is that, if user fails login...
6
2282
by: fido19 | last post by:
Once upon a time, there lived a chimpanzee called Luycha Bandor (aka Playboy Chimp). Luycha was unhappily married to Bunty Mona, a short but cute little lady chimp. Luycha was tall and handsome – he was feeling uncomfortable taking Bunty to public places along with him. People would stare at them all the while. At one point, Luycha could not stand it anymore and he decided to do some justice to his name. He started looking for a new hope in...
3
1129
by: phanimadhav | last post by:
Hi friends this is my select statement SELECT user_accountID,Expensive = case quotaAmount when quotaNo = 'quota1' then sum(quotaAmount) else 0 end FROM user_accounts Msg 102, Level 15, State 1, Line 2 Incorrect syntax near '='. whenever i am executing the query this error will be occur please clear this error
0
9609
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,...
0
10669
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10408
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10426
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
9225
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...
0
6897
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
5570
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4358
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
3886
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.