473,725 Members | 2,017 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to write this out using xmlwriter

Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";

thanks.
--
Paul G
Software engineer.
Apr 19 '07 #1
9 6091
Paul wrote:
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";
We need to know whether those elements (e.g. Row, Cell) are in a
namespace and which namespace URI that namespace has. And we need to
know which namespace URI the prefix ss is bound to.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 20 '07 #2
Hi thanks for the response. When I write out the row I am using the following,
WriteStartEleme nt("Row");
WriteAttributeS tring("ss","Aut ofitHeight","Sp readsheetNamesp ace","0");
followed by other write statements for cells/data and closing tags.
So I am using the SpreadsheetName space for both rows and cells.
The SpreadsheetName space I have defined as
"urn:schema s-microsoft-com:office:spar eadsheet". I am using the "ss" prefix
whenever the SpreadsheetName space is used like in the WriteAttributeS tring
above. I am kind of new to xml but was trying to bind it to
urn:schemas-microsoft-com:office:spre adsheet. Do I need an additional line
of code to do this or is it implied by how I am using it?
Thanks again Paul.
--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";

We need to know whether those elements (e.g. Row, Cell) are in a
namespace and which namespace URI that namespace has. And we need to
know which namespace URI the prefix ss is bound to.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #3
Also I am using a namespace when i write out the string attribute for the
cells and rows. I am using the WriteStartEleme nt as described above to write
out the start tags for rows and cells. Thanks Paul.
--
Paul G
Software engineer.
"Paul" wrote:
Hi thanks for the response. When I write out the row I am using the following,
WriteStartEleme nt("Row");
WriteAttributeS tring("ss","Aut ofitHeight","Sp readsheetNamesp ace","0");
followed by other write statements for cells/data and closing tags.
So I am using the SpreadsheetName space for both rows and cells.
The SpreadsheetName space I have defined as
"urn:schema s-microsoft-com:office:spar eadsheet". I am using the "ss" prefix
whenever the SpreadsheetName space is used like in the WriteAttributeS tring
above. I am kind of new to xml but was trying to bind it to
urn:schemas-microsoft-com:office:spre adsheet. Do I need an additional line
of code to do this or is it implied by how I am using it?
Thanks again Paul.
--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";
We need to know whether those elements (e.g. Row, Cell) are in a
namespace and which namespace URI that namespace has. And we need to
know which namespace URI the prefix ss is bound to.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #4
Also under the Workbook I have the following
xmlns:ss = urn:schemas-microsoft-com:office:spre adsheet

--
Paul G
Software engineer.
"Paul" wrote:
Also I am using a namespace when i write out the string attribute for the
cells and rows. I am using the WriteStartEleme nt as described above to write
out the start tags for rows and cells. Thanks Paul.
--
Paul G
Software engineer.
"Paul" wrote:
Hi thanks for the response. When I write out the row I am using the following,
WriteStartEleme nt("Row");
WriteAttributeS tring("ss","Aut ofitHeight","Sp readsheetNamesp ace","0");
followed by other write statements for cells/data and closing tags.
So I am using the SpreadsheetName space for both rows and cells.
The SpreadsheetName space I have defined as
"urn:schema s-microsoft-com:office:spar eadsheet". I am using the "ss" prefix
whenever the SpreadsheetName space is used like in the WriteAttributeS tring
above. I am kind of new to xml but was trying to bind it to
urn:schemas-microsoft-com:office:spre adsheet. Do I need an additional line
of code to do this or is it implied by how I am using it?
Thanks again Paul.
--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";
>
We need to know whether those elements (e.g. Row, Cell) are in a
namespace and which namespace URI that namespace has. And we need to
know which namespace URI the prefix ss is bound to.
>
--
>
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
>
Apr 23 '07 #5
additional information, the spreadsheet that I am trying to copy has the
following for the section of interest.
<Cell SS:StyleID="s87 ">
<ss:Data SS:Type="String " xmlns="http://www.w3.org/TR/REC-html40">
<Font html:Color="#FF 0000">M90</Font>
<Font/Thur<Font>
</ss:Data>
</Cell>

--
Paul G
Software engineer.
"Paul" wrote:
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87 ">
<ss:Data ss: Type = "String">
<Font html:Color="#FF 0000">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
This produces a cell with text with part of the text being red the M90 and
the other part being black.
I also have the following strings set up in my code
string spreadsheetName space = "urn:schema s-microsoft-com:office:spre adsheet";
string officeNamespace = "urn:schema s-microsoft-com:office:offi ce";
string excelNamespace = "urn:schema s-microsoft-com:office:exce l";
string htmlNamespace = "http://www.w3.org/TR/REC-html40";

thanks.
--
Paul G
Software engineer.
Apr 23 '07 #6
Paul wrote:
Also under the Workbook I have the following
xmlns:ss = urn:schemas-microsoft-com:office:spre adsheet
Here is some sample code that should help, you merely need to use the
WriteStartEleme nt, WriteElementStr ing and WriteAttributeS tring overloads
that allow you to specify prefix, local name, namespace and value:

const string spreadsheetName space =
"urn:schema s-microsoft-com:office:spre adsheet";
const string officeNamespace =
"urn:schema s-microsoft-com:office:offi ce";
const string excelNamespace =
"urn:schema s-microsoft-com:office:exce l";
const string htmlNamespace = "http://www.w3.org/TR/REC-html40";

XmlWriterSettin gs writerSettings = new XmlWriterSettin gs();
writerSettings. Indent = true;
using (XmlWriter xmlWriter = XmlWriter.Creat e("file.xml",
writerSettings) )
{
xmlWriter.Write StartElement("R ow", spreadsheetName space);
xmlWriter.Write StartElement("C ell", spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "StyleID",
spreadsheetName space, "s87");
xmlWriter.Write StartElement("s s", "Data",
spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "Type",
spreadsheetName space, "String");
xmlWriter.Write AttributeString (null, "xmlns", null,
htmlNamespace);
xmlWriter.Write StartElement("F ont", htmlNamespace);
xmlWriter.Write AttributeString ("html", "Color",
htmlNamespace, "#FF0000");
xmlWriter.Write String("M90");
xmlWriter.Write EndElement();
xmlWriter.Write ElementString(" Font", htmlNamespace,
"/Thu");
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
}

Result is

<Row xmlns="urn:sche mas-microsoft-com:office:spre adsheet">
<Cell ss:StyleID="s87 "
xmlns:ss="urn:s chemas-microsoft-com:office:spre adsheet">
<ss:Data ss:Type="String " xmlns="http://www.w3.org/TR/REC-html40">
<Font html:Color="#FF 0000"
xmlns:html="htt p://www.w3.org/TR/REC-html40">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
</Row>

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #7
Hi, thanks for the response. I will give it a try.
--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Also under the Workbook I have the following
xmlns:ss = urn:schemas-microsoft-com:office:spre adsheet

Here is some sample code that should help, you merely need to use the
WriteStartEleme nt, WriteElementStr ing and WriteAttributeS tring overloads
that allow you to specify prefix, local name, namespace and value:

const string spreadsheetName space =
"urn:schema s-microsoft-com:office:spre adsheet";
const string officeNamespace =
"urn:schema s-microsoft-com:office:offi ce";
const string excelNamespace =
"urn:schema s-microsoft-com:office:exce l";
const string htmlNamespace = "http://www.w3.org/TR/REC-html40";

XmlWriterSettin gs writerSettings = new XmlWriterSettin gs();
writerSettings. Indent = true;
using (XmlWriter xmlWriter = XmlWriter.Creat e("file.xml",
writerSettings) )
{
xmlWriter.Write StartElement("R ow", spreadsheetName space);
xmlWriter.Write StartElement("C ell", spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "StyleID",
spreadsheetName space, "s87");
xmlWriter.Write StartElement("s s", "Data",
spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "Type",
spreadsheetName space, "String");
xmlWriter.Write AttributeString (null, "xmlns", null,
htmlNamespace);
xmlWriter.Write StartElement("F ont", htmlNamespace);
xmlWriter.Write AttributeString ("html", "Color",
htmlNamespace, "#FF0000");
xmlWriter.Write String("M90");
xmlWriter.Write EndElement();
xmlWriter.Write ElementString(" Font", htmlNamespace,
"/Thu");
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
}

Result is

<Row xmlns="urn:sche mas-microsoft-com:office:spre adsheet">
<Cell ss:StyleID="s87 "
xmlns:ss="urn:s chemas-microsoft-com:office:spre adsheet">
<ss:Data ss:Type="String " xmlns="http://www.w3.org/TR/REC-html40">
<Font html:Color="#FF 0000"
xmlns:html="htt p://www.w3.org/TR/REC-html40">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
</Row>

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #8
Hi Martin, I integrated your example into my code and looks like it wrote out
the correct stuff when viewed with notepad but when I open the file in excel
for that cell I get M90 /Thur with empty spaces between the strings.
Also they are both colored black so seems like the Color #FF0000 is not
working. Any suggestions on what might be wrong? Thanks .
--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Also under the Workbook I have the following
xmlns:ss = urn:schemas-microsoft-com:office:spre adsheet

Here is some sample code that should help, you merely need to use the
WriteStartEleme nt, WriteElementStr ing and WriteAttributeS tring overloads
that allow you to specify prefix, local name, namespace and value:

const string spreadsheetName space =
"urn:schema s-microsoft-com:office:spre adsheet";
const string officeNamespace =
"urn:schema s-microsoft-com:office:offi ce";
const string excelNamespace =
"urn:schema s-microsoft-com:office:exce l";
const string htmlNamespace = "http://www.w3.org/TR/REC-html40";

XmlWriterSettin gs writerSettings = new XmlWriterSettin gs();
writerSettings. Indent = true;
using (XmlWriter xmlWriter = XmlWriter.Creat e("file.xml",
writerSettings) )
{
xmlWriter.Write StartElement("R ow", spreadsheetName space);
xmlWriter.Write StartElement("C ell", spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "StyleID",
spreadsheetName space, "s87");
xmlWriter.Write StartElement("s s", "Data",
spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "Type",
spreadsheetName space, "String");
xmlWriter.Write AttributeString (null, "xmlns", null,
htmlNamespace);
xmlWriter.Write StartElement("F ont", htmlNamespace);
xmlWriter.Write AttributeString ("html", "Color",
htmlNamespace, "#FF0000");
xmlWriter.Write String("M90");
xmlWriter.Write EndElement();
xmlWriter.Write ElementString(" Font", htmlNamespace,
"/Thu");
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
}

Result is

<Row xmlns="urn:sche mas-microsoft-com:office:spre adsheet">
<Cell ss:StyleID="s87 "
xmlns:ss="urn:s chemas-microsoft-com:office:spre adsheet">
<ss:Data ss:Type="String " xmlns="http://www.w3.org/TR/REC-html40">
<Font html:Color="#FF 0000"
xmlns:html="htt p://www.w3.org/TR/REC-html40">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
</Row>

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #9
Thanks for the help, got it working. I had to write stuff out all on one
line to get rid of the spaces between M90 and /thur.

--
Paul G
Software engineer.
"Martin Honnen" wrote:
Paul wrote:
Also under the Workbook I have the following
xmlns:ss = urn:schemas-microsoft-com:office:spre adsheet

Here is some sample code that should help, you merely need to use the
WriteStartEleme nt, WriteElementStr ing and WriteAttributeS tring overloads
that allow you to specify prefix, local name, namespace and value:

const string spreadsheetName space =
"urn:schema s-microsoft-com:office:spre adsheet";
const string officeNamespace =
"urn:schema s-microsoft-com:office:offi ce";
const string excelNamespace =
"urn:schema s-microsoft-com:office:exce l";
const string htmlNamespace = "http://www.w3.org/TR/REC-html40";

XmlWriterSettin gs writerSettings = new XmlWriterSettin gs();
writerSettings. Indent = true;
using (XmlWriter xmlWriter = XmlWriter.Creat e("file.xml",
writerSettings) )
{
xmlWriter.Write StartElement("R ow", spreadsheetName space);
xmlWriter.Write StartElement("C ell", spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "StyleID",
spreadsheetName space, "s87");
xmlWriter.Write StartElement("s s", "Data",
spreadsheetName space);
xmlWriter.Write AttributeString ("ss", "Type",
spreadsheetName space, "String");
xmlWriter.Write AttributeString (null, "xmlns", null,
htmlNamespace);
xmlWriter.Write StartElement("F ont", htmlNamespace);
xmlWriter.Write AttributeString ("html", "Color",
htmlNamespace, "#FF0000");
xmlWriter.Write String("M90");
xmlWriter.Write EndElement();
xmlWriter.Write ElementString(" Font", htmlNamespace,
"/Thu");
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
xmlWriter.Write EndElement();
}

Result is

<Row xmlns="urn:sche mas-microsoft-com:office:spre adsheet">
<Cell ss:StyleID="s87 "
xmlns:ss="urn:s chemas-microsoft-com:office:spre adsheet">
<ss:Data ss:Type="String " xmlns="http://www.w3.org/TR/REC-html40">
<Font html:Color="#FF 0000"
xmlns:html="htt p://www.w3.org/TR/REC-html40">M90</Font>
<Font>/Thu</Font>
</ss:Data>
</Cell>
</Row>

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Apr 23 '07 #10

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

Similar topics

2
3121
by: jason hirst | last post by:
Hi, I've created a simple application that reads data from a SQL Server, and appends this to an XML file. The problem is, that the XML data structure seems to go to the top level when I write the file. By this, I mean, if my original XML file looks like... <?xml version="1.0" encoding="utf-8" ?>
2
3523
by: FrzzMan | last post by:
The first time I called this function, everything went well, but the second time I called it. An Exception thrown, do you know why? An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll Additional information: The process cannot access the file "E:\......\bin\Debug\test.xml" because it is being used by another process. ----------------------------------------------
3
7702
by: John A Grandy | last post by:
When writing rss xml to the client browser , is there any reason to load the rss xml string into an XmlDocument and then Response.Write() the XmlDocument.OuterXML.ToString() ? option 1: string rssXml = null; -- build rssXML -- Response.Write(rssXml);
2
6942
by: darrel | last post by:
We've been using xmltextwriter to write XML files to the filesystem. For various reasons, we're ditching the filesystem and want to store the XML as text in a DB field. Looking at all the examples of using the XMLTextWriter, however, it appears that it is used solely for writing directly to a file or output stream. Is there a way in ASP.net to use something like the XMLwriter to write valid XML but just do it in memory and dump it into a...
11
6464
by: ericms | last post by:
Can anybody show me how to insert a CDATA section using XPathNavigator ? I have tried the follwing with no luck: XmlDocument docNav = new XmlDocument(); docNav.LoadXml(xmlString); XPathNavigator nav = docNav.CreateNavigator(); XmlDocument doc = new XmlDocument(); doc.LoadXml("<DocumentData></DocumentData>"); XmlElement elem = doc.CreateElement(currentNodeName);
1
2741
by: Nick | last post by:
I am working on a website for a client and one of their requirements was to have a mailing list. I decided to XSLT to transform "templates" to HTML so that editing was very easy and less time consuming. I keep getting the following error when I submit my email to their site. System.Xml.Xsl.XslTransformException: Cannot find the script or external object that implements prefix 'ext:MailingList'. at...
4
7220
by: Anthoni | last post by:
Dear All, I need to export data of unbound datagridview to XML file. Since my DataSource is NULL, What other options do I have? Does i need to make 2 loops (on all the records and inside loop of all the cells) read data and export it to XML? TIA,
1
4948
by: depalau | last post by:
I'm experiencing issues where XmlSerialier.Deserialize throws an exception when attempting to use a MemoryStream built with an XmlWriter vs. a standalone StringReader. It is attempting to deserialize a complex object. Here is what I have: 0. Environment: Visual Studio 2005, VB.Net. I won't go into the gory details of my complex object, just suffice to say that I need to return XML instead of the object directly from the web service....
0
1825
by: MedIt | last post by:
Hi all, Help needed in the xsl transformation in c# while passing with arguments. I am trying to transform an xml programtically (c#), while passing with two parameters using the XsltArgumentList class. My problem is in the transformed xml. Even when I set in my XmlWriter the Encoding to UTF-8, or even when I set it null, my output transformed xml is without the xml header encoding attribute:<?xml version="1.0" encoding="utf-8"?> Wether...
0
8888
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
8752
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
9401
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
9257
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...
0
8096
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
6011
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();...
1
3221
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
2634
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.