Click here to Skip to main content
15,919,245 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow to pass parameter from the main report to subreport based on the primary using report viewer + asp.net with C# Pin
Victoriya Raj18-Feb-10 18:32
Victoriya Raj18-Feb-10 18:32 
Questioncrystal report Pin
shanthi jothi18-Feb-10 18:20
shanthi jothi18-Feb-10 18:20 
AnswerRe: crystal report Pin
Arnalyn19-Feb-10 0:31
Arnalyn19-Feb-10 0:31 
QuestionDataSourceSelectArguments Cannot Be Converted to Integer Pin
Sid Childers18-Feb-10 18:18
Sid Childers18-Feb-10 18:18 
QuestionRetrieving checkbox value from db Pin
test-0918-Feb-10 17:55
test-0918-Feb-10 17:55 
AnswerRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 18:20
Dinesh Mani18-Feb-10 18:20 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 18:33
test-0918-Feb-10 18:33 
GeneralRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 18:36
Dinesh Mani18-Feb-10 18:36 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 18:41
test-0918-Feb-10 18:41 
GeneralRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 19:13
Dinesh Mani18-Feb-10 19:13 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 19:24
test-0918-Feb-10 19:24 
GeneralRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 19:29
Dinesh Mani18-Feb-10 19:29 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 19:35
test-0918-Feb-10 19:35 
GeneralRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 19:43
Dinesh Mani18-Feb-10 19:43 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 19:55
test-0918-Feb-10 19:55 
GeneralRe: Retrieving checkbox value from db Pin
Dinesh Mani18-Feb-10 20:08
Dinesh Mani18-Feb-10 20:08 
Ok I'm not getting why you need to do it this way so here you go.

pseudo -

Declare string CheckedBoxesText --- Use a stringbuilder
For each check box in datalist
if Checkbox is checked
   Add concatenate checkbox text to CheckedBoxesText 
else
   do nothing
End of Foreach Loop
Query = "insert into test(test1) values('"CheckedBoxesText"')";
Execute query.


Implementing this pseudo would enable you to save the "text" of your check boxes to the db.
GeneralRe: Retrieving checkbox value from db Pin
Ravindra Nidhonkar18-Feb-10 22:32
Ravindra Nidhonkar18-Feb-10 22:32 
AnswerRe: Retrieving checkbox value from db Pin
Anurag Gandhi18-Feb-10 18:38
professionalAnurag Gandhi18-Feb-10 18:38 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 18:46
test-0918-Feb-10 18:46 
AnswerRe: Retrieving checkbox value from db Pin
Brij18-Feb-10 18:48
mentorBrij18-Feb-10 18:48 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 18:56
test-0918-Feb-10 18:56 
GeneralRe: Retrieving checkbox value from db Pin
Brij18-Feb-10 19:10
mentorBrij18-Feb-10 19:10 
GeneralRe: Retrieving checkbox value from db Pin
test-0918-Feb-10 23:34
test-0918-Feb-10 23:34 
QuestionUsing session and events Pin
ishwarya mahadevan18-Feb-10 17:34
ishwarya mahadevan18-Feb-10 17:34 
AnswerRe: Using session and events Pin
Brij18-Feb-10 19:00
mentorBrij18-Feb-10 19:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.