Hello again, I'm back after fiddling around with the demos. What I am trying to do is get the canvas to save as an image on the web server. When I click Save, it does nothing at all. I hope I haven't stumped the gurus here. So, here is all my code:
CanvasSave.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using System.Web.Script.Services;
using System.Web.Services;
[ScriptService]
public partial class CanvasSave : System.Web.UI.Page
{
static string path = HttpContext.Current.Server.MapPath("../SOAPImgs/");
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod()]
public static void UploadImage(string imageData)
{
string fileNameWitPath = path + DateTime.Now.ToString().Replace("/", "-").R ...
Go to the complete details ...