Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
~2K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for sujay anand

first pull data you want from database, just a simple SELECT query, even if it returns no data it will work fine for following: DataTable dtData = //Data pulled from DB, just use a SELECT statement if(dtData.Rows.Count>0) { checkbox.Checked = true; } else { checkbox.Checked = false; } I just …

Member Avatar for EddyC27
0
129
Member Avatar for saineshwar

I take it you are binding a bit to the checkbox on load from your Text='<%# Eval("Name") %>' Checked='<%# Eval("Check") %>' section. It will postback because binding to the checkbox triggers the check change event

Member Avatar for EddyC27
0
816
Member Avatar for sarvesh_1

Use the Update Panel of the Ajax toolkit which will help the display purposes. Juts do not include your File Uploader within the UpdatePanel as FileUploaders lose their data as soon as a post back occurs(security issues or something). If your label is outside the Update Panel then just set …

Member Avatar for EddyC27
0
442
Member Avatar for asardeen

Hi If you are making no changes to data after it has been imported from excel, and just want a straight save to sql: Just before you set the Datasource of the grid, put your data into a Session so it can be used in the click event Session["data"] = …

Member Avatar for EddyC27
0
151

The End.