Web Forms :: Output The Values From The Constructors When Choose The Specific List Box Item?

Feb 7, 2010

I am trying to create a simple page with a drop down list which has 3 items. Choosing any of those 3 items calls for a specific constructor in the script. Using VB 2008

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (DropDownList1.Text == "Coupe")
{
//Response.Write("You chose the Coupe");
string Engine;
string Transmission;
string Wheels;
string Safety_Features;
string Key_Systems;
string Interior;
string Mileage;
Altima A1 = new Altima(Engine, Transmission, Wheels, Safety_Features, Key_Systems, Interior, Mileage);
Response.Write(A1.displayAuto());
}
if (DropDownList1.Text == "Hybrid")
{
Response.Write("You chose the Hybrid");
}
if (DropDownList1.Text == "Sedan")
{
Response.Write("You chose the Sedan");
}
}
public class Altima
{
//private member variables
private string Engine;
private string Transmission;
private string Wheels;
private string Key_System;
private string Safety_Features;
private string Interior;
private string Mileage;
//public accessor methods
public void displayAuto()
{
System.Console.WriteLine(Engine, Transmission, Wheels, Safety_Features,Key_System, Interior, Mileage);
}
//constructors
public Altima(string Engine, string Transmission, string Wheels, string Safety_Features, string Key_System, string Interior, string Mileage)
{
this.Engine = Engine;
this.Transmission = Transmission;
this.Wheels = Wheels;
this.Key_System = Key_System;
this.Safety_Features = Safety_Features;
this.Interior = Interior;
this.Mileage = Mileage;
string Engine = ("2.5-litre DOHC engine with 175 HP and 180 lb-ft of torque or 3.5-litre DOHC engine with 270 HP and 258 lb-ft of torque");
string Transmission = ("-speed manual transmission or available Xtronic CVT® with manual mode");
string Wheels = ("17 inch 5-spoke aluminum-alloy wheels (2.5 S) or 18 inch 5-split spoke aluminum-alloy wheels (3.5 SR)");
string Safety_Features = ("Six standard air bags as part of Nissan Advanced Airbag System (AABS)");
string Key_System = ("Nissan Intelligent Key® with Push Button Ignition");
string Interior = ("Leather");
string Mileage = ("Up to 5.6 L/100 km on city with eCVT");
}//coupe -------> First constructor
public Altima(string Engine, string Transmission, string Safety_Features, string Mileage)
{
this.Engine = Engine;
this.Transmission = Transmission;
this.Safety_Features = Safety_Features;
this.Mileage = Mileage;
string Engine = ("2.5-litre DOHC engine with 175 HP and 180 lb-ft of torque or 3.5-litre DOHC engine with 270 HP and 258 lb-ft of torque");
string Transmission = ("-speed manual transmission or available Xtronic CVT® with manual mode");
string Safety_Features = ("Six standard air bags as part of Nissan Advanced Airbag System (AABS)");
string Mileage = ("Up to 5.6 L/100 km on city with eCVT");
}//sedan -----------> Second Constructor
public Altima(string Engine, string Transmission, string Mileage)
{
this.Engine = Engine;
this.Transmission = Transmission;
this.Mileage = Mileage;
string Engine = ("2.5-litre DOHC engine with 175 HP and 180 lb-ft of torque or 3.5-litre DOHC engine with 270 HP and 258 lb-ft of torque");
string Transmission = ("-speed manual transmission or available Xtronic CVT® with manual mode");
string Mileage = ("Up to 5.6 L/100 km on city with eCVT");
}//hybrid -----------> Third constructor
}
}

how do I ouput the values from the constructors when I choose the specific list box item?

View 6 Replies


Similar Messages:

Web Forms :: Allow The User To Choose An Item, But Rather Than Populate Another Drop Down List Control?

Jun 22, 2010

I've got a drop down list that I want to populate with items from a SQL Server database, which I did successfully, but I can't figure out how to write an if statement that will clear the drop down list based on a selected index and repopulate it with data from another table. The drop down list is inside an update panel that auto posts back.

Basically I want to allow the user to choose an item, but rather than populate another drop down list control, i just want to repopulate the current one with new data.I'm guessing that if I want to get data from more than one table the code below isn't going to work for me. Could I get the data from all the tables at once and store each table data in its own variable until I need to use it? (Each table will have under 10 items, in 5 tables.)

Here is the code to get the data from the database:[Code]....

View 10 Replies

Forms Data Controls :: Choose Item From Dropdown List And Display In A Separate URL?

Sep 1, 2010

I've a dropdown list for departments (engineering, bio, chemistry,physics etc.) when somebody choose the departments from the dropdown list, it displays the opening closing time(hours) in a detailsview controls.

I have separate homepage for these departments ( these are the static html pages and no way to send querystring value) and I want to link the hours for each department from the departmental homepage.

When I choose the department from the DDL, everytime it's the same URL.

How can I solve the problem So that I can point the respective hours from the respective departments ?

View 3 Replies

How To Hide List-style Image For One Specific List Item

Oct 5, 2010

I am having an unordered list like:

<ul style="list-style: square url(Images/rssIconSmall.png)">
<li><h3>All Items</h3></li>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>

View 2 Replies

Web Forms :: Add A New Item To Radio Button List At Certain Specific Position

May 7, 2015

I would like add a new item to a RadioButtonList after binding the items from database.

rbtnl1.Items.Add(new ListItem("All", "0"));

I used this code. But I need to add this new item to the index 0.

View 1 Replies

How To Change List Item Values With Url

Feb 22, 2011

I have a tabbed list that changes the div with javascript when selected. I would like to have have other pages on my site lead to and set a list item to active. With the code below my content_1 list item is set to active, I would like to have the active tab changed if say I selected a content_3 link from another page and I would like to set a custom url that will set content_3 to active when i go to the page with the list.

<div class="tabbed_area">
<ul class="tabs">
<li><a href="#" title="content_1" class="tab active">Web Design</a></li>
<li><a href="#" title="content_2" class="tab">Web Design</a></li>
[code]...

View 1 Replies

Web Forms :: Show Data In A Textbox Automatically When Choose An Item In A Dropdownlist?

Feb 10, 2011

i have a web page, with some filters using dropdownlist, and when i select items from these dropdownlist, a gridview appear showing data from a sql server. The idea is that when i select an item, from the first or second drop down list, in a textbox appear for example the name of the item i choose from the dropdownlist.

I use only VB and not C#.

[Code]....

View 5 Replies

C# - Convert List<Roomtype> To SelectList For ASP, MVC DropDownFor<>, And Get The Correct Values Per Option Item?

Jun 1, 2010

I have my class RoomType:

Int32 Id
String Name
String ColorCode

My viewmodel gets a List<Roomtype> RoomTypes which should be displayed in a dropdown.

Each dropdown option item should have: 1) as title the Name, 2) as value the Id, and 3) the style background-color #ColorCode.

My problems are how to convert this list correctly into a List<SelectListItem> as required by ASP.NET MVC's DropDownFor helper, and then to have the correct values inserted for each option.

I've tried to have a new readonly property in my viewmodel, which has a getter RoomtypeSelectList which returns new SelectList(RoomTypeList) but I can't get the correct properties to show (Name, Id, Background color).

View 3 Replies

How To Choose A Country From That Drop Down List

May 15, 2010

I have a dropdown list in my page which can load country list from a SQL database table. Now, I want to choose a country from that drop down list and If I click on the go button, then I want another query which can compare the country name(which I have selected) with another table and load the other necessary info from that table. If I specify the country name on the SQL command , then the data loads nicely(

<asp:SqlDataSource ID="SqlDataSource5" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString2 %>"
ProviderName="<%$ ConnectionStrings:ConnectionString2.ProviderName %>" SelectCommand="SELECT [Zone_Name], [Card] FROM [Rates] WHERE ([Zone_Name] LIKE 'Canada%')">
[code]...

View 6 Replies

Web Forms :: Redirecting A User Selected Item In A Drop Down List To Another Item?

Feb 10, 2010

I have a list with 2 sorts of items. Items that have actual values (1,2,3,4 etc) and items that are like group headings so all their values are set to 0. If someone decides to select a group heading - which has a value of 0, is it possible to redirect them to my 'Select an item' item which has a value of ""?

If worse comes to worse, I can just reconstruct the entire list, although if possible I'd like to avoid it.

View 4 Replies

OnClick Run SQL Code Output To Specific DIV

Mar 9, 2011

Basically when a user clicks a button I have a javascript code that runs that displays the hidden DIV, my question is how do I make it so when the users click it executes the SQL code (which is already written to select the data) and then it displays it in the DIV that I want. Would the only way to do this be add a label to the DIV and then use LabelName.Text to populate it or can this be accomplished some other way? I am using Visual Studio 2008 and coding in c#.

View 2 Replies

C# - List Output / On Click Add Data To The List Which Is Then Stored Into A Session Variable?

Dec 1, 2010

How would I create a list then on click add data to the list which is then stored into a session variable, then on another page retrieve the variable and output them? Currently I have:

Page Load:

List <myClass> listName=new List<myClass>

OnClick:

listName.add(3);
listName.add(4);

Session["IDs"]=listName;
Second Page

I need to get the whole list and add output the list so I can output (hopefully) the '3' and '4'.

View 1 Replies

Web Forms :: Clicking The Label Of A Dropdown List - Resets The Selected Value To The First Item In The List?

Feb 17, 2010

Clicking the label of a drop down list, re-sets the selected value to the first item in the list. This has a history of causing data entry problems when users accidently click on the label.

In the below example ddlContactType has a selected value as 'PRIMARY' and whenever i click on the lblContactType Text, the dropdown box Selected value is changing to "Select One" Text.

How to prevent this one. It should be on PRIMARY Only.

<p>
<tr> <td ><asp:Label ID="lblContactType" Font-Bold="true" Text="Contract Type: *" ForeColor= "red" runat="server" AssociatedControlID="ddlContactType"></asp:Label> </td> <td > <asp:DropDownList runat="server" ID="ddlContactType" DataSourceID="SqlDataSource2" AppendDataBoundItems="true"
DataTextField="TYPE" DataValueField="ID" SelectedValue='<%# Bind("CONTACT_TYPE_ID") %>'>
<asp:ListItem Text="Select One" Value="0" Selected="True"></asp:ListItem>.......

View 4 Replies

Code To Output A Specific HTTP Header E.g. X-adexpert-id?

Sep 10, 2010

What is the code to output a specific HTTP header e.g. x-adexpert-id

View 2 Replies

Web Forms :: How To Highlight The Current List Item In The Unordered List

Mar 25, 2010

I have a master page which has an unordered list in this way:

[code]....

These links are directed to my content pages. I am able to highligt the selected list item on hover and on active.

But I do not understand how I can highlight the selected list item as long as the user is on that specific page/link (current list item). I know that we can specify a seperate body tag and id for each of the content pages and then use CSS to highlight the current list item, but all this code rests already inside a body tag in the master page.

View 7 Replies

Once Select "choose Item" From Toolbox VS2008 Close?

Jan 29, 2010

I want to add a control from toolbox, choose item but VS2008 close without any error.

How to fix it?

View 3 Replies

Forms Data Controls :: List View Item Placeholder / Error An Item Placeholder Must Be Specified On ListView 'ListView1'

Mar 22, 2011

I am using list view to display the the data but i am getting an error like An item placeholder must be specified on ListView 'ListView1'. Specify an item placeholder by setting a control's ID property to "itemPlaceholder". The item placeholder control must also specify runat="server.Even i have specified the itemplaceholder id but no use still same error.

[Code]....

View 1 Replies

Forms Data Controls :: Datagrid With Column Choose To Choose Columns Dynamically Using DataGrid With Object Data Sour

Sep 30, 2010

I have "Order" object with Columns Ticket,OTP and CustomerName etc.Intially on DataGrid, I'm binding Ticket only , when user clicks on "Column Chooser" button, another windows appears to pickup CustomerName,OTP columns to add specified column dynamically on Datagrid. Environment : Asp.net ,C# with Object Data source

Public Class Order
{
publc void Order()
{
}
public string Ticket
{
get
{
return this.strTicket;
}
set
{
this.strTicket = value;
}
}
public string OtpNumber
{
get
{
return this.strOtpNumber;
}
set
{
this.strOtpNumber = value;
}
}
public string CustomerName
{
get
{
return this.strCustomer;
}
set
{
this.strCustomer = value;
}
}
}
}

View 1 Replies

Web Forms :: Move Specific Item In DropDownList To First Position Using Index?

Sep 30, 2013

i have on dropdown, i want to set specific selected item at top of dropdownlist box when binding items inside dropdowlistbox.

View 1 Replies

Dropdownlist / Every Time Selecct An Item, First Item In List Gets Selected?

Feb 3, 2010

i use a dropdownlist in a page, with its items taken from a mysql database

i also use autopostback property...my problem here is that, every time i selecct an item, the first item in the list gets seelected

View 5 Replies

C# - Dropdown - Get The Value Of The First Item In The List Regardless Of What Item Is Actually Selected

Dec 3, 2010

I have a drop down list control populated with items and some code to take the currently selected item value. The problem is I only get the value of the first item in the list regardless of what item is actually selected. Here is my code to populate the drop down:

protected void displayCreateCategories()
{
StoreDataContext db = new StoreDataContext();
var a = from c in db.Categories
orderby c.Name
select new{catName= c.Name,
catId=c.CategoryID};
ddlCategory.DataSource = a;
ddlCategory.DataTextField = "catName";
ddlCategory.DataValueField = "catId";
ddlCategory.DataBind();
}

To get the value of the currently selected item which in my case is always of type integer I do label1.text=Convert.toInt32(ddlCategory.SelectedValue); I get the selected value, but it is always for the 1st item in the list. I'm pulling my hair out over this.

View 2 Replies

MVC :: How To Pass All The Option List Item From The Drop Down List To View Model

Nov 10, 2010

I have a requirement in my application that, while saving the application, need to get all the value from drop down list and pass it to the view model. But application should not allow the user to select more than one item from drop down list manually, ie, only one value at a time. My view model is like ...

public class ListManagement
{
public IEnumerable<selectListItem> InactiveProduct { get; set; }
public string[] InactiveProductSelected { get; set; }
public IEnumerable<selectListItem> ActiveProduct { get; set; }
}

[code]...

View 3 Replies

Forms Data Controls :: When Executing This The Output In Simple Colmun That Is Not Showing Dropdown List?

Oct 25, 2010

[Code]....

I am using a dropdown inside gridview with sqldatasource but when iam executing this the output in simple colmun that is not showing dropdown list plz check my aspx code.

View 5 Replies

Web Forms :: Get Specific Values Inside A Text?

Jun 15, 2010

My question could be easy but I cannot search it on the net couse I do not know with wich words I need to search it funny haa !

Here is my problem;

I have a button inside a datalist with command name of 'Command1' and '12.09,13,21,True,Here is a string text' The type of it can be changed. it doesnt matter. What I wanna do only matters here ! when I press this button I wanna get value before comma seperately. E.g. someting like that;

decimal Dec1 = 12.09;
int int01 = 13;
int int02 = 21;
Boolean bool1 = True;

string string01 = "Here is a string text";

After I press it I wanna appoint values to those variables.

View 3 Replies

How ToAdd An Item To A DropDownMenu List, And Making It Appear First In The List

Mar 17, 2011

I've put together the following code which generates a dropdownmenu list (values from a database) in a repeater control, then adds a final item. I can make it selected, but I'd like it to appear at the top, rather than the bottom as it does now.

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved