Hello Everyone,
I have created a basic web form for my end users to create tickets with. See code below. I am trying to add multiple custom fields to this and find myself coming up short. If you have a working solution for this can you post or send me an email to ssanders@mdspn.com with your working code? Thanks in advance.
<form action="http://lansweeper/api.aspx?Action=AddTicket&Key=xxx" method="post">
<div>
<label for="subject">What trouble are you having?</label>
<input name="subject" id="subject" value="">
</div>
<div>
<label for="description">Please be descriptive?</label>
<input name="description" id="description" value="">
</div>
<div>
<label for="email">E-mail Address</label>
<input name="email" id="email" value="ssanders@mdspn.com">
</div>
<div>
<label for="customfields">IP Address</label>
<input name="customfields" id="customfields" value="">
</div>
<div>
<button>Submit</button>
</div>
</form>