Click here to Skip to main content
15,904,023 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
This is my website http://www.jcbpartsindia.com/p1.aspx[^]

i want to if check box selected then click send inquiry button then rest value of row like Part No and Description go to inquiry page so plz help me
Posted
Comments
OriginalGriff 25-May-12 2:24am    
What's the problem?
What have you tried?
Where are you stuck?
[no name] 25-May-12 2:31am    
please explain ur problem in brief
hitech_s 25-May-12 2:44am    
please explain your problem clearly

1 solution

You can use sessions or QueryString concept to send the PartNo ,Description etcc...


EX: sudocode

C#
 foreach(row in Gridrows)
{
 if(row.findcontrol(CheckboxID).selected)

   Session["Part1"]=row[0].text;

etc...

}
 
Share this answer
 
v3
Comments
Prosan 25-May-12 9:16am    
please provide your code for understanding excatly what is ur problem. then v can give u a perfect solutions.

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