4
Answers

DropDownlist event is not firing

alpesh 0

alpesh 0

20y
3.8k
1
Hi, I am relatively new to .NET framework but I've overall 3 years of web development experience using Java and php technology. I am right now using VS.NET 2002 with .NET version 1.0 to develop my application. I've a dropdown list server control which gets automatically populater from the database. I want to do so addition , subtraction and lil bit manipulations on the page itself when somebody selects an item from the drop down list. I tried to use selectedindexchanged event handler and by keeping autopostback=true but it doesn't seem to work. Even i kept a break point but the event doesn't get fire at all. Even i tried to use onselectedindexchange method but it also doesn't work. So Please help me out guys. I read almost everything related to dropdownlist alreayd but nothing seems to help me. Thanks in advance,
Answers (4)
0
tejal bhesaniya
NA 53 13.2k 12y
SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourTable]') if it exist then it will display the result,,,with table name ,,,tpe and everything
0
Naresh Avari
NA 811 1.6m 12y
Select your database and open new query window and

EXEC sp_tables @table_type = "'table'"


0
Jignesh Trivedi
NA 61k 14.2m 12y
hi,

there are two tables sys.tables and sys.objects, in which data base maintain table information
please try.

select * from sys.tables where name = 'Table1'

select * from sys.objects where type = 'U' and type_desc = 'USER_TABLE'


hope this will help you.