How to generate <a> tag from input fields
- by NonProgrammer
Using ASP.Net (in C#), I need to generate a tag that contains person's name, address, etc. I have barely any experience with ASP.NET (or .NET languages) and I am given this assignment. Could someone please guide me to correct path please?
Link should look like this:
https://example.com/PRR/Info/Login.aspx?SupplierId=36&RegisteredUserLogin=T000001&Mode=RegisteredLoginless&RegisteredModeFunction=AutoShowTotals&RegisteredModeFunction=AutoShowTotals&PayerCountry=FI&[email protected]&ExternalOrderId=1000123&ServiceId=286&Amount286=5000.00&PayerInfo286=T000001|10000123|type1|m&SuccessReturnURL=http://success.html&FailureReturnURL=http://failure.html&SuccessCallbackURL=http://youpay.com/p247/success.html&FailureCallbackURL=http://yourfailure.html
following components/fields needs to be sent to API in order to pre-populate information for users:
FirstName,
LastName,
SupplierID = integer,
Person's userlogin (Should increment by 1. Example: person 1 = t00001. Person2 = t00002, etc.),
PayerCountry,
Email,
amount
For some reason, my management thinks that this is something a non-technical person can do! Any help would be appreciated!
Thanks!