Click here to Skip to main content
15,909,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: using VbNewLine Pin
praveenkumar_mca21-Aug-07 1:03
praveenkumar_mca21-Aug-07 1:03 
GeneralRe: using VbNewLine Pin
Vasudevan Deepak Kumar21-Aug-07 1:38
Vasudevan Deepak Kumar21-Aug-07 1:38 
Questionflash Pin
jai 12321-Aug-07 0:22
jai 12321-Aug-07 0:22 
AnswerRe: flash Pin
Christian Graus21-Aug-07 0:57
protectorChristian Graus21-Aug-07 0:57 
QuestionChecking with database Pin
bhattiprolu21-Aug-07 0:19
bhattiprolu21-Aug-07 0:19 
AnswerRe: Checking with database Pin
Christian Graus21-Aug-07 0:59
protectorChristian Graus21-Aug-07 0:59 
QuestionSearch Criteria Pin
Brendan Vogt20-Aug-07 23:49
Brendan Vogt20-Aug-07 23:49 
Questionread check box control's value in datalist Pin
deepalititi20-Aug-07 23:42
deepalititi20-Aug-07 23:42 
i have data list which has check box in item template. i bound this data list to data source through coding. but when i try to read check box values which are checked i donot get any value though check box is checked. my code is like
protected void Button1_Click(object sender, EventArgs e)
{

foreach (DataListItem _obj in dlAddressType.Items)
{
if (_obj.ItemIndex > -1)
{
Label _lbl = (Label)_obj.FindControl("lblAddressTypeID");
int chkID;
string chkVal;
chkVal = _lbl.Text;
chkID = Convert.ToInt32(chkVal);

CheckBox _checkBox = (CheckBox)_obj.FindControl("chkAddressType");

if (flag != 1)
{
if (_checkBox.Checked == true)
{

_ag.AddAddress(ad);

// now the addressGroup object has 2 addresses in it.

// indicate this is the shipping address AddressTypeID = 5
_ag._AddressDetails[chkID].AddressClientSideID = ad.ClientSideID;

}
}
else
{
if (_checkBox.Checked == true)
{
_ag = new AddressGroup(ad);

_ag._AddressDetails[chkID].AddressClientSideID = ad.ClientSideID;
flag = 0;
}
}
}
}
}
Questionhow to refresh a contorl???? [modified] Pin
kiran@p2softech20-Aug-07 23:22
kiran@p2softech20-Aug-07 23:22 
AnswerRe: how to refresh a contorl???? Pin
Christian Graus20-Aug-07 23:31
protectorChristian Graus20-Aug-07 23:31 
AnswerRe: how to refresh a contorl???? Pin
Talal Sultan20-Aug-07 23:32
Talal Sultan20-Aug-07 23:32 
GeneralRe: how to refresh a contorl???? Pin
kiran@p2softech20-Aug-07 23:57
kiran@p2softech20-Aug-07 23:57 
GeneralRe: how to refresh a contorl???? Pin
Talal Sultan21-Aug-07 1:51
Talal Sultan21-Aug-07 1:51 
QuestionI just want my root Pin
Sam Heller20-Aug-07 23:20
Sam Heller20-Aug-07 23:20 
QuestionDeleting Multiple Items in a Listbox Pin
Brendan Vogt20-Aug-07 22:39
Brendan Vogt20-Aug-07 22:39 
AnswerRe: Deleting Multiple Items in a Listbox Pin
Christian Graus20-Aug-07 23:13
protectorChristian Graus20-Aug-07 23:13 
AnswerRe: Deleting Multiple Items in a Listbox Pin
Talal Sultan20-Aug-07 23:23
Talal Sultan20-Aug-07 23:23 
QuestionProblem Pin
Big Ralph20-Aug-07 21:59
Big Ralph20-Aug-07 21:59 
AnswerRe: Problem Pin
Christian Graus20-Aug-07 22:27
protectorChristian Graus20-Aug-07 22:27 
GeneralRe: Problem Pin
Sam Heller20-Aug-07 23:23
Sam Heller20-Aug-07 23:23 
GeneralRe: Problem Pin
Christian Graus20-Aug-07 23:30
protectorChristian Graus20-Aug-07 23:30 
GeneralRe: Problem Pin
Big Ralph20-Aug-07 23:57
Big Ralph20-Aug-07 23:57 
GeneralRe: Problem Pin
Big Ralph20-Aug-07 23:59
Big Ralph20-Aug-07 23:59 
AnswerRe: Problem Pin
Bhaskar Shetty21-Aug-07 0:26
Bhaskar Shetty21-Aug-07 0:26 
GeneralRe: Problem Pin
Big Ralph22-Aug-07 0:28
Big Ralph22-Aug-07 0:28 

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.