hai friends,
I m currently using sql server 2000 DB for my asp application
my table is
create table ttr
(
startdate datetime,
from_loctn varchar(100),
to_location varchar(100),
Modeoftravel nvarchar(100),
seattype nvarchar(100)
)
Modeoftravel and seattype is dropdownbox. if im choose it ll store value only not name
(ex:
insert into ttr('20-03-2013','abc','dbn','train','IIAC')
but showing my table as
modeoftravel value is 1
seattype value 1
how to modify