WIP: ZugferdRESTService
This commit is contained in:
16
WEBSERVICES/ZUGFeRDRESTService/Pages/Index.cshtml
Normal file
16
WEBSERVICES/ZUGFeRDRESTService/Pages/Index.cshtml
Normal file
@@ -0,0 +1,16 @@
|
||||
@page
|
||||
@{
|
||||
ViewData["Title"] = "UploadTest";
|
||||
}
|
||||
|
||||
<h1>UploadTest</h1>
|
||||
|
||||
<form method="post" action="/api/zugferdvalidation" enctype="multipart/form-data" >
|
||||
<p>
|
||||
<span>PDF Datei:</span>
|
||||
<input type="file" />
|
||||
</p>
|
||||
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
|
||||
17
WEBSERVICES/ZUGFeRDRESTService/Pages/Index.cshtml.cs
Normal file
17
WEBSERVICES/ZUGFeRDRESTService/Pages/Index.cshtml.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace ZUGFeRDRESTService
|
||||
{
|
||||
public class UploadTestModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user