Here is the code I tried to store the data in binary format for the uploaded file.....................
i get the Json as
not able to retrieve the binary data Please help me......
protected void Button1_Click(object sender, EventArgs e){ int PartyRowId = 0; foreach (UploadedFile file in AsyncUpload1.UploadedFiles) { byte[] bytes = new byte[file.ContentLength]; file.InputStream.Read(bytes, 0, Convert.ToInt32(file.ContentLength)); string json3 = "{'PartyRowId':" + PartyRowId + ",'CommonCategoryRowId':" + PartyRowId + ",'CommnonCategoryAttributesRowId':" + PartyRowId + ",'PartyDoc':" + bytes + "}"; string status = ClsUtility.HttpPost("http://localhost/ServiceWrapper/MetaData.svc/PartyDocumentsID", json3); }}i get the Json as
{'PartyRowId':0,'CommonCategoryRowId':0,'CommnonCategoryAttributesRowId':0,'PartyDoc':System.Byte[]}not able to retrieve the binary data Please help me......