Click here to Skip to main content
15,923,051 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to include Map effect in application Pin
eyeseetee26-May-08 21:33
eyeseetee26-May-08 21:33 
QuestionOpen a New Page Pin
slSoftware26-May-08 20:54
slSoftware26-May-08 20:54 
AnswerRe: Open a New Page Pin
eyeseetee26-May-08 21:30
eyeseetee26-May-08 21:30 
GeneralRe: Open a New Page Pin
slSoftware26-May-08 22:05
slSoftware26-May-08 22:05 
GeneralRe: Open a New Page Pin
eyeseetee26-May-08 22:21
eyeseetee26-May-08 22:21 
GeneralRe: Open a New Page Pin
slSoftware26-May-08 22:45
slSoftware26-May-08 22:45 
GeneralRe: Open a New Page Pin
eyeseetee26-May-08 22:48
eyeseetee26-May-08 22:48 
GeneralRe: Open a New Page Pin
slSoftware27-May-08 1:03
slSoftware27-May-08 1:03 
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindData();
}
}

private void BindData()
{
ArrayList courseList = new Biz.CourseBO().GetAllCourses();
DropDownListCourse.DataSource = courseList;
DropDownListCourse.DataValueField = "ID";
DropDownListCourse.DataTextField = "AsString";
DropDownListCourse.DataBind();
}



protected void Button1_Click(object sender, EventArgs e)
{
if (DropDownListCourse.SelectedIndex != 0 && DropDownListBatch.SelectedIndex != 0)
{
CrBiz.DataTransferComponent co = new CrBiz.BatchFileBO().GetBatchFile(int.Parse(DropDownListBatch.SelectedValue));

this.ReportDoc = co.Document;
this.ReportData = co.DataSet;
}
}

protected void DropDownListCourse_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownListBatch.Items.Clear();
DropDownListBatch.Items.Add(new ListItem("-Select-", " "));
if (DropDownListCourse.SelectedIndex != 0)
{
Ins.ICourse _course = new Biz.CourseBO().CreateCourse(int.Parse(DropDownListCourse.SelectedValue));
ArrayList batchList = new Biz.BatchBO().GetBatch(_course);
DropDownListBatch.DataSource = batchList;
DropDownListBatch.DataValueField = "ID";
DropDownListBatch.DataTextField = "DisplayNumber";
DropDownListBatch.DataBind();
}
}
QuestionAuto Delete Pin
trilokharry26-May-08 19:49
trilokharry26-May-08 19:49 
AnswerRe: Auto Delete Pin
N a v a n e e t h26-May-08 20:40
N a v a n e e t h26-May-08 20:40 
GeneralRe: Auto Delete Pin
trilokharry26-May-08 20:53
trilokharry26-May-08 20:53 
GeneralRe: Auto Delete Pin
N a v a n e e t h26-May-08 20:57
N a v a n e e t h26-May-08 20:57 
GeneralRe: Auto Delete Pin
trilokharry26-May-08 21:09
trilokharry26-May-08 21:09 
GeneralRe: Auto Delete Pin
eyeseetee26-May-08 21:27
eyeseetee26-May-08 21:27 
AnswerRe: Auto Delete Pin
Mogaambo26-May-08 21:12
Mogaambo26-May-08 21:12 
QuestionDelete doesn't work in ASP.NET 2003 Data Grid. Pin
SekharOne26-May-08 19:11
SekharOne26-May-08 19:11 
QuestionRe: Delete doesn't work in ASP.NET 2003 Data Grid. Pin
Vasudevan Deepak Kumar26-May-08 19:12
Vasudevan Deepak Kumar26-May-08 19:12 
AnswerRe: Delete doesn't work in ASP.NET 2003 Data Grid. Pin
N a v a n e e t h26-May-08 19:13
N a v a n e e t h26-May-08 19:13 
AnswerRe: Delete doesn't work in ASP.NET 2003 Data Grid. Pin
Milind Panchal26-May-08 23:52
Milind Panchal26-May-08 23:52 
AnswerRe: Delete doesn't work in ASP.NET 2003 Data Grid. Pin
Vivek Kushwaha27-May-08 0:04
Vivek Kushwaha27-May-08 0:04 
QuestionBind Id and Name to linkbutton Pin
sjs4u26-May-08 19:01
sjs4u26-May-08 19:01 
AnswerRe: Bind Id and Name to linkbutton Pin
Vasudevan Deepak Kumar26-May-08 19:12
Vasudevan Deepak Kumar26-May-08 19:12 
AnswerRe: Bind Id and Name to linkbutton Pin
N a v a n e e t h26-May-08 19:15
N a v a n e e t h26-May-08 19:15 
Questionlocalization issue with mozilla Pin
anee26-May-08 18:40
anee26-May-08 18:40 
QuestionRe: localization issue with mozilla Pin
Vasudevan Deepak Kumar26-May-08 18:48
Vasudevan Deepak Kumar26-May-08 18:48 

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.