Click here to Skip to main content
15,887,320 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Situation:
I'm building an application for users to fill out a form. The data is then submitted to a database. An email is sent to the users manager with the data and a link back to the application where a form is then populated with the data.

Question:
Where can I find the information which speaks (examples) on how to get the URL/Link (with recordID that populates a page.) back to the applications (also what is this action called?)? The email works fine... I can send a clickable link to a website with no problem. I want the clickable link open a page in my application (using a recordID that populates a page).

Thanks

Suge
Posted
Comments
Kornfeld Eliyahu Peter 4-Mar-15 13:52pm    
Can you show the link you already have?
makenthecase 4-Mar-15 15:20pm    
Below is only a placeholder
string bLink = @"CLICK HERE";

I'm looking for one that click back to my app opening a pre-populated form from the recordID sent with the email...

looks like it won't allow me to post the actual code...

1 solution

Instead of setting href to www.domain.com set it to www.domain.com/mypage.aspx?id=1234...
That will call mypage.aspx with id on the QueryString[^] with value 1234...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900