Hello Telerik,
I have a small issue and maybe you can help me. I have a form where user enters the info. What i want is to convert the html document into pdf on button click without saving the entered info by the user into the database. Can you tell which telerik tool should i use in this case? Thank you.
here is a simplified version of the form:
I have a small issue and maybe you can help me. I have a form where user enters the info. What i want is to convert the html document into pdf on button click without saving the entered info by the user into the database. Can you tell which telerik tool should i use in this case? Thank you.
here is a simplified version of the form:
<div> <asp:Label ID="Label1" runat="server" Text="Label">Please enter your name:</asp:Label><br /> <br /> <asp:Label ID="Label4" runat="server" Text="Label">name: </asp:Label> <asp:TextBox ID="txtName" runat="server"></asp:TextBox> <br /> <br /> <asp:Label ID="Label2" runat="server" Text="Label"> Please enter your last name:</asp:Label><br /> <br /> <asp:Label ID="Label3" runat="server" Text="Label">lastname:</asp:Label> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> <br /> <br /> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /> </div>
