0
Answer

How to get hardcoded data to xml and that xml can be used in .Net

Photo of shaik mahaboob

shaik mahaboob

17y
2.3k
1

Hai all,

i had some code which is hard coded...

like
<Const strUserID As String = "zoo"
Const strpwd As String = "test"
Const strapiID As String = "301"
Const strFrom As String = "zoo"
Const strurl As String = "http://api.xyz.com/http/sen?"
Dim strUseURL As String = ""
Dim strSMSURL As String = "" >

 

i am new to xml....

<?xml version="1.0" encoding="utf-8" ?>

<GateWay name="UserID">

<title>Gate</title>

<Collection>

<strUserID >zoo</strUserID >

<strpwd >test </strpwd >

<strapiID >301</strapiID >

<strurl >http://sms.xyz.com/sen.asp?</strurl >

</Collection> like this

but

my requirement is that hard coded data will be taken in xml file and that xml data will be sended to another file (like sms or mail)

Answers (0)