473,779 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can't right justify datagrid fields

I have a datagrid that I cannot get to right justify a money amount (which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom
Jun 21 '07 #1
5 2703
Hi there,

<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:Label runat="server" ID="lbl"/>
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateFie ld>
</Columns>

hope this helps
--
Milosz
"tshad" wrote:
I have a datagrid that I cannot get to right justify a money amount (which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom
Jun 22 '07 #2
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:7F******** *************** ***********@mic rosoft.com...
Hi there,

<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:Label runat="server" ID="lbl"/>
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateFie ld>
</Columns>
That doesn't work either. It seems to be the same as what I have (except
mine is inside the asp:TemplateCol umn tag).

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right"
>
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>

Here is the result in my view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl4_JobBoardPr iceDisplay">$1. 00</span>
</td>

It creates the align="Right" in the td tag and seems to take out the
text-align:right completely as I assume that is because it is going to
create its own style from the ItemStyle... attributes.

But I assume that since there is nothing in the span statement - the align
doesn't seem to work.

Thanks,

Tom
>
hope this helps
--
Milosz
"tshad" wrote:
>I have a datagrid that I cannot get to right justify a money amount
(which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateC olumn Visible="true" itemStyle-Width="100px"
HeaderText="Am ount Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="serve r"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom

Jun 22 '07 #3
Howdy,

It did work for me. Any chance there is a default style for a table cell
defined?

Regards
--
Milosz
"tshad" wrote:
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:7F******** *************** ***********@mic rosoft.com...
Hi there,

<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:Label runat="server" ID="lbl"/>
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateFie ld>
</Columns>

That doesn't work either. It seems to be the same as what I have (except
mine is inside the asp:TemplateCol umn tag).

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right"
>
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>

Here is the result in my view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl4_JobBoardPr iceDisplay">$1. 00</span>
</td>

It creates the align="Right" in the td tag and seems to take out the
text-align:right completely as I assume that is because it is going to
create its own style from the ItemStyle... attributes.

But I assume that since there is nothing in the span statement - the align
doesn't seem to work.

Thanks,

Tom

hope this helps
--
Milosz
"tshad" wrote:
I have a datagrid that I cannot get to right justify a money amount
(which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom


Jun 22 '07 #4
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:10******** *************** ***********@mic rosoft.com...
Howdy,

It did work for me. Any chance there is a default style for a table cell
defined?
Here is the datagrid statement:

<asp:DataGrid
Visible=true
AllowSorting="f alse"
AutoGenerateCol umns="false"
CellPadding="0"
CellSpacing="0"
ID="DataGrid1"
runat="server"
BorderWidth="0"
ShowFooter="fal se"
ShowHeader="tru e"
GridLines="None "
Width="245px" Style="border-collapse:collap se;padding-left:2px">
<columns>
<asp:TemplateCo lumn Visible="true" ItemStyle-HorizontalAlign ="center"
ItemStyle-Width="25px">
<itemtemplate >
<asp:CheckBox ID="Choice" OnCheckedChange d="Handle3rdPar tyPost_Click"
AutoPostBack="t rue" runat="server" />
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="true" ItemStyle-Width="120px" HeaderText="3rd
Party" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" >
<itemtemplate >
<asp:Label ID="JobBoardNam e" Text='<%# Container.DataI tem("Name")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" itemStyle-Width="80px"
ItemStyle-VerticalAlign=" middle" >
<itemtemplate >
<asp:Label ID="JobBoardPri ce" Text='<%# Container.DataI tem("Price")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" ItemStyle-Font-Bold="true"
ItemStyle-Width="165px" ItemStyle-VerticalAlign=" middle">
<itemtemplate >
<asp:TextBox ID="AccountNumb er" Text='<%#
Container.DataI tem("AccountNum ber")%>' Enabled="true" Columns="15"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" >
<itemtemplate >
<asp:Label ID="JobBoardID " Text='<%# Container.DataI tem("JobBoardID ")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" >
<itemtemplate >
<asp:TextBox ID="RecordState " Visible="false" Columns="10"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
</columns>
</asp:DataGrid>
<asp:Label ID="ErrorMessag e2" ForeColor="red" runat="server"/>

The important cell would be the ID=JobBoardPric eDisplay.

Thanks,

Tom
>
Regards
--
Milosz
"tshad" wrote:
>"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:7F******* *************** ************@mi crosoft.com...
Hi there,

<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:Label runat="server" ID="lbl"/>
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateFie ld>
</Columns>

That doesn't work either. It seems to be the same as what I have (except
mine is inside the asp:TemplateCol umn tag).

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Am ount Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle"
ItemStyle-HorizontalAlign ="right"
> >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="serve r"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>

Here is the result in my view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl4_JobBoardPr iceDisplay">$1. 00</span>
</td>

It creates the align="Right" in the td tag and seems to take out the
text-align:right completely as I assume that is because it is going to
create its own style from the ItemStyle... attributes.

But I assume that since there is nothing in the span statement - the
align
doesn't seem to work.

Thanks,

Tom
>
hope this helps
--
Milosz
"tshad" wrote:

I have a datagrid that I cannot get to right justify a money amount
(which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateC olumn Visible="true" itemStyle-Width="100px"
HeaderText="Am ount Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="serve r"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom



Jun 22 '07 #5
Howdy,

<asp:TemplateCo lumn Visible="true" HeaderText="Amo unt Per Job"
HeaderStyle-Font-Bold="true">
<ItemTemplate >
<asp:Label ID="JobBoardPri ceDisplay" runat="server" />
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"
VerticalAlign=" middle" Width="100px"/>

does the job. If it doesn't, you applied default css formatting for table
somewhere on the page or stylesheet.

regards
--
Milosz
"tshad" wrote:
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:10******** *************** ***********@mic rosoft.com...
Howdy,

It did work for me. Any chance there is a default style for a table cell
defined?

Here is the datagrid statement:

<asp:DataGrid
Visible=true
AllowSorting="f alse"
AutoGenerateCol umns="false"
CellPadding="0"
CellSpacing="0"
ID="DataGrid1"
runat="server"
BorderWidth="0"
ShowFooter="fal se"
ShowHeader="tru e"
GridLines="None "
Width="245px" Style="border-collapse:collap se;padding-left:2px">
<columns>
<asp:TemplateCo lumn Visible="true" ItemStyle-HorizontalAlign ="center"
ItemStyle-Width="25px">
<itemtemplate >
<asp:CheckBox ID="Choice" OnCheckedChange d="Handle3rdPar tyPost_Click"
AutoPostBack="t rue" runat="server" />
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="true" ItemStyle-Width="120px" HeaderText="3rd
Party" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" >
<itemtemplate >
<asp:Label ID="JobBoardNam e" Text='<%# Container.DataI tem("Name")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" itemStyle-Width="80px"
ItemStyle-VerticalAlign=" middle" >
<itemtemplate >
<asp:Label ID="JobBoardPri ce" Text='<%# Container.DataI tem("Price")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" ItemStyle-Font-Bold="true"
ItemStyle-Width="165px" ItemStyle-VerticalAlign=" middle">
<itemtemplate >
<asp:TextBox ID="AccountNumb er" Text='<%#
Container.DataI tem("AccountNum ber")%>' Enabled="true" Columns="15"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" >
<itemtemplate >
<asp:Label ID="JobBoardID " Text='<%# Container.DataI tem("JobBoardID ")%>'
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn Visible="false" >
<itemtemplate >
<asp:TextBox ID="RecordState " Visible="false" Columns="10"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>
</columns>
</asp:DataGrid>
<asp:Label ID="ErrorMessag e2" ForeColor="red" runat="server"/>

The important cell would be the ID=JobBoardPric eDisplay.

Thanks,

Tom

Regards
--
Milosz
"tshad" wrote:
"Milosz Skalecki [MCAD]" <mi*****@DONTLI KESPAMwp.plwrot e in message
news:7F******** *************** ***********@mic rosoft.com...
Hi there,

<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:Label runat="server" ID="lbl"/>
</ItemTemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateFie ld>
</Columns>

That doesn't work either. It seems to be the same as what I have (except
mine is inside the asp:TemplateCol umn tag).

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle"
ItemStyle-HorizontalAlign ="right"
>
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
<ItemStyle HorizontalAlign ="right"/>
</asp:TemplateCol umn>

Here is the result in my view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl4_JobBoardPr iceDisplay">$1. 00</span>
</td>

It creates the align="Right" in the td tag and seems to take out the
text-align:right completely as I assume that is because it is going to
create its own style from the ItemStyle... attributes.

But I assume that since there is nothing in the span statement - the
align
doesn't seem to work.

Thanks,

Tom

hope this helps
--
Milosz
"tshad" wrote:

I have a datagrid that I cannot get to right justify a money amount
(which
is just a label). No matter what I do - it still right justifies it.

<asp:TemplateCo lumn Visible="true" itemStyle-Width="100px"
HeaderText="Amo unt Per Job" HeaderStyle-Font-Bold="true"
ItemStyle-VerticalAlign=" middle" ItemStyle-HorizontalAlign ="right" >
<itemtemplate >
<asp:Label ID="JobBoardPri ceDisplay" style="text-align:right"
runat="server"/>
</itemtemplate>
</asp:TemplateCol umn>

I tried 2 different ways:
ItemStyle-HorizontalAlign ="right"
style="text-align:right"

This gives me the following results when I view source:

<td align="Right" valign="Middle" style="width:10 0px;">
<span id="DataGrid1__ ctl3_JobBoardPr iceDisplay"
style="text-align:right"><s trong>$25.00</strong></span>
</td>

What else can I do to make this work?

Thanks,

Tom



Jun 24 '07 #6

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

Similar topics

6
4395
by: Owen Jacobson | last post by:
We all know that text-align: justify; is supposed to justify the block's text across the box. I have a friend, however, who wants to take that further. A visual example, because it's 2:30 AM and I don't want to try to describe it: MARGIN| S O M E T E X T |MARGIN Where "SOME TEXT" is a heading, presumably, and the spacing between letters works out such that the contents space to fit the whole box, which stretches and shrinks...
4
5779
by: Yuk Cheng | last post by:
<<<start index.htm>>> <html> <head> <script> function perform(action){ } </script> </head>
6
9448
by: Leonard | last post by:
How do I right justify input data in a textbox? I have some textboxes that are used to input numbers, and I would like to right justify them.
1
18319
by: Kevin R | last post by:
Hi All, I am using for(i = . . . . .) sw.WriteLine(string.Format("{0} {1}", num1, num2)); and I am getting 12 123
1
3784
by: Harry Devine | last post by:
I have a DataGrid that is configured to use the Edit/Update/Cancel concept correctly. My grid shows values from 5 database fields. I only need to update that last 4 fields. The last field is a Yes/No value in Access. Using the OleDbCommand, if I do not consider the Yes/No field, the ExecuteNonQuery command, using my UPDATE SQL statement, updates the record correctly. However, if I put the Yes/No field into the mix, ExecuteNonQuery...
2
1652
by: John Wilson | last post by:
Here's a dumb question from a learner: In a datagrid in a web page, how do I right justify a column of figures? I bet its easy once you know. John Wilson
5
4241
by: HS1 | last post by:
Hello I have a datagrid to show data for a database table using "seclect * from tablename" The datagrid works OK. However, I want to change the name of the fields in the database to other name in DataGrid. For example, a field name in database is "FName" will be shown in dataGrid as "First Name". Could you please tell me how to do that
3
8763
by: mehdi | last post by:
I have a field that is a memo and I have a report displaying the text in that memo. What I need to know is how to "justify" the text right to left. The reason is in arabic and persian language we write right to left. What I want:
3
4567
by: vtashore | last post by:
I downloaded Steve Leban's RTF2 control and it works as advertised. Good news! After reading reference material on the RTF standard codes, I have been able to write update queries to universally change the font or font size directly in my table without having to edit the text natively in Leban's control. Also good news. I see that there is an RTF code, \posyc, which would center the text vertically within the reference frame. The...
0
9632
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9471
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
10302
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...
1
10071
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
9925
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
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
5372
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...
0
5501
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4036
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

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.