TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
MR alaa
1.1k
631
21.4k
load dropdownlist in masterpage
Apr 4 2016 8:47 AM
hi every body i have popup window un master page which open in button click i want to load dropdownlist in that window but it doesnt load in pageload or in buttonlink click i test the window using button in it it works fine my code is
if (!IsPostBack)
{
DDlSchool.Attributes["style"] = "background-color:#63B79C;height: 52px;border - radius: 0px;width:175px;";
DDlSchool.Items.Insert(0, new ListItem("-- hello", "0"));
Binddatadropdown();
}
or
public void LBcallus_Click(object sender, EventArgs e)
{
DDlSchool.Attributes["style"] = "background-color:#63B79C;height: 52px;border - radius: 0px;width:175px;";
DDlSchool.Items.Insert(0, new ListItem("-- hello", "0"));
Binddatadropdown();
}
but it doesnt work where is the problem ??
Reply
Answers (
2
)
Please explain this function and were to this use?
The data is not Saving while clicking the main save button?