I have one application, one user purchase some products in
my application? and another person came he is also purchase
some products?how can we identify which user purchase which
items?
my answer is by using session id? but i dont know how? can
u give me programming for that?
Answer Posted / nidhi
take userid and store it in session variable.. when a user
purchases product store product details along with session
(userid) in database or an xml file and when u want to
retrive fetch from it.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is latest version of asp.net mvc? : Asp.Net MVC
What are the new web part controls in asp.net 2.0 ?
What is is post back property in asp net?
Explain what is event bubbling?
What are themes and skins in 2.0, explain usage scenario?
What is query string? What are its advantages and limitations?
What is the difference between session.abandon() vs clear()?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
How does output caching work in ASP.NET?
What is work flow gen? how can it will work with .Net?
What are the advantages of the code-behind feature?
what is AutoEventWireUp and what is the use of This property explain in details?
What is view state management in asp net?
Define view state.