Talk:Main Page
From CDYNE Wiki for Web Services
Question on Code metatags
Hello, could you tell me how you integrated your code metatags:
<code type=c#>programming code goes here...</code>
into your wiki?
Example:
XmlNode nodeAddress = new XmlNode(); nodeAddress.InnerText = "1 Main Street"; nodeAddress.Name = "AddressLine1";
SELECT top 10 * FROM people WHERE lastname='Jones'
I work for a software company (we have many of our clients using your CDYNE products) and we are developing our own pubic Wiki, and I would love to be able to use these metatags for C# and SQL code. If you can explain this to me, I would be grateful. Thanks.
Code client tset source
implementation
uses emailverify;
procedure TForm1.Button1Click(Sender: TObject); var oEmailVerifySoap:EmailVerifySoap; oReturnValues:ReturnValues; I:integer; begin oEmailVerifySoap:=GetEmailVerifySoap(); oReturnValues:= oEmailVerifySoap.VerifyEmail(edit1.text,''); ValidLicenseKey.Checked:=oReturnValues.ValidLicenseKey; CorrectSyntax.Checked:=oReturnValues.CorrectSyntax; EmailDomainFound.Checked:=oReturnValues.EmailDomainFound; EmailDisposable.Checked:=oReturnValues.EmailDisposable; DomainVerifiesEmail.Checked:=oReturnValues.DomainVerifiesEmail; DomainAcceptsMail.Checked:=oReturnValues.DomainAcceptsMail; DomainVerifiesEmail.Checked:=oReturnValues.EmailVerified; Timeout.Checked:=oReturnValues.Timeout; DomainServersDown.Checked:=oReturnValues.DomainServersDown; GoodEmail.Checked:=oReturnValues.GoodEmail; end;
