1
Answer

Web App DataGrid I need help pls

Hello, maybe can someone to help me.
I have a datagrid in a WebApp which contains a dropdownlist named ddlGroup, and 3  bounded columns MinAge, MaxAge and Code.  In the datagrid I can Edit, Update, Delete and Add a new row. In Edit mode, Code is generated in accordance with ddlGroup, MinAge and MaxAge. For this I need an event or I don't know what to catch the moment when text is changed in MinAge, MaxAge  textboxes or the selectedvalue from ddlGroup.



Can someone help me, pls?
Thank you!
Answers (1)
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.