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]