Now currently uploading a file only through below code .. what actually looking is need to send a value "myValue" too how can i achieve this
string message, title, defaultValue;
string myValue;
message = "Enter Image name please";
title = "Image name";
defaultValue = "1";
myValue =Interaction.InputBox(message, title, defaultValue,100,100);
using (System.Net.WebClient Client = new System.Net.WebClient())
{
Client.Headers.Add("Content-Type", "binary/octet-stream");
Client.Headers.Add("SESSION-KEY", App.Session_Key);
try
{
byte[] result = Client.UploadFile(Screenshot.Properties.Resources.APIURL + "Upload.php", "POST", "temp.png");
here i need to send "myValue " too while file upload