Click here to Skip to main content
15,902,492 members

Comments by maya saste (Top 6 by date)

maya saste 18-Feb-11 3:43am View    
Thanks a lot.but there is another problem,I write one control for calender design.control contains one label which hold number that is date of today.now I want to access value from resource file & assign to label.but value of that label remains same in every control.I use this control 31 times in application when I assign 3 to label in control is displays 3 in 31 control.now how to give different value to each label.Thanks.
maya saste 16-Feb-11 4:05am View    
Deleted
Thanks a lot.but there is another problem,I write one control for calender design.control contains one label which hold number that is date of today.now I want to access value from resource file & assign to label.but value of that label remains same in every control.I use this control 31 times in application when I assign 3 to label in control is displays 3 in 31 control.now how to give different value to each label.Thanks.
maya saste 28-Jan-11 4:38am View    
I try this way but value is not assign to label.
maya saste 22-Jan-11 2:32am View    
can you give me some hint or information about this easy way.
maya saste 17-Jan-11 8:48am View    
Thanks.I try this way but I redirect on next page with null value.on link button click I get null value from text box.code is as follows
protected void lnkBtnDisplay_Click(object sender, EventArgs e)
{
string strName;
string strCountry;

strName =txtName.Text;
strCountry = ddlName.Text;
Response.Redirect("Next.aspx?name=" + strName + "&country=" + strCountry);
}
here I get null value from txtName text box.why?