O'Reilly Forums: Code Examples - O'Reilly Forums

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Code Examples

#1 User is offline   squire40 

  • New Member
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 12-November 08

Posted 12 November 2008 - 07:37 AM

Where can I download the code examples and files from the book?
0

#2 User is offline   sarahkim 

  • Active Member
  • PipPipPipPipPip
  • Group: Administrators
  • Posts: 157
  • Joined: 12-November 07
  • Gender:Female
  • Interests:online communities

Posted 13 November 2008 - 03:16 PM

Hello,

Thanks for writing! The code examples are now available for download here:
http://examples.oreilly.com/9780596529567/

You can also find the link under the book cover on the book's catalog page.

Kind regards,
Sarah
Sarah Kim
Online Community Manager
O'Reilly Media, Inc.
http://community.oreilly.com
0

#3 User is offline   jiangbo88 

  • New Member
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 17-November 08

Posted 17 November 2008 - 10:32 AM

The code examples at:
http://examples.oreilly.com/9780596529567/
is for 3rd edition. Where can I download the code examples from the 4th edition?

This post has been edited by jiangbo88: 17 November 2008 - 10:35 AM

0

#4 User is offline   Dan_Maharry 

  • Active Member
  • PipPip
  • Group: O'Reilly Author
  • Posts: 23
  • Joined: 17-September 08
  • Gender:Male
  • Location:UK

Posted 17 November 2008 - 01:25 PM

QUOTE (jiangbo88 @ Nov 17 2008, 06:32 PM) <{POST_SNAPBACK}>
The code examples at:
http://examples.oreilly.com/9780596529567/
is for 3rd edition. Where can I download the code examples from the 4th edition?


Hi,

I have just resubmitted the code examples for the book to O'Reilly. With any luck they shall be available to download via the main page for this book in a couple of days.

Thanks, Dan
Dan Maharry
Author, Programming ASP.NET 3.5
(home : blog : tumblr)
0

#5 User is offline   zyla999 

  • New Member
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 03-January 09

Posted 03 January 2009 - 08:13 AM

Is there a VB.NET source code for the book?
0

#6 User is offline   Dan_Maharry 

  • Active Member
  • PipPip
  • Group: O'Reilly Author
  • Posts: 23
  • Joined: 17-September 08
  • Gender:Male
  • Location:UK

Posted 14 January 2009 - 02:54 PM

QUOTE (zyla999 @ Jan 3 2009, 04:13 PM) <{POST_SNAPBACK}>
Is there a VB.NET source code for the book?


Yes there is. They too are now available for download at http://examples.oreilly.com/9780596529567/
Dan Maharry
Author, Programming ASP.NET 3.5
(home : blog : tumblr)
0

#7 User is offline   Alexandry 

  • New Member
  • Pip
  • Group: Members
  • Posts: 5
  • Joined: 29-March 10

Posted 14 April 2010 - 01:50 AM

Thanks for links.
0

#8 User is offline   addlinksites 

  • New Member
  • Pip
  • Group: Members
  • Posts: 3
  • Joined: 22-April 13

Posted 22 April 2013 - 01:45 AM

thats a great website http://help.exacttar...t_code_samples/
...like here is following example

/**
* Code to Add Data to DataExtension Object.
* DE Name: Definition_Key
* @johndoe
*/

public void testAddDataToExtension()
{
DataExtensionObject extensionObject1 = new DataExtensionObject();
APIProperty property1 = new APIProperty();
property1.Name = "EmailAddress";
property1.Value = "johndoe@example.com";

APIProperty property2 = new APIProperty();
property2.Name = "FirstName";
property2.Value = "John";

APIProperty property3 = new APIProperty();
property3.Name = "LastName";
property3.Value = "Doe";

APIProperty property4 = new APIProperty();
property4.Name = "PrimaryKey";
property4.Value = "PrimaryKey";

extensionObject1.Properties = new APIProperty[] {property1, property2, property3, property4};
extensionObject1.CustomerKey = "Definition_Key";

APIObject[] objects = new APIObject[] {extensionObject1};
string requestId = null;

CreateResult[] results =
soapClient.Create(new CreateOptions(), objects, out requestId, out overallStatus);
Console.WriteLine("done.....");
Addlinksites is directory where you can add link and share articles.
[url="http://addlinksites.com"]link directory[/url] | [url="http://addlinksites.com/latest_links.php"]submit link[/url]
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users