Hi,
I have created a quote form on which login member has to fill the form and send to me which is working fine.
I wanted to know, how to show that specific result to the user who has submit the form in another page.
I am using membership and the submit form is custom form.
Currently this is the code:
Guid id = Guid.NewGuid();
SqlConnection con = new SqlConnection(strConnString);
string strQuery = "insert into test (Id, Quote_Name, PO)" +
" values ( @Id, @Quote_Name, @PO)";
SqlCommand cmd = new SqlCommand(strQuery);
cmd.Parameters.AddWithValue("@Id", id.ToString());
cmd.Parameters.AddWithValue("@Quote_Name", QuoteName.Text);
But the id is that is create is random id, Is there a way I can add something like membership id so that I can ...
Go to the complete details ...