Поле ввода HTML - отключает

Declare @fs_e int, @C_Tables CURSOR, @Table varchar(50)

SET @C_Tables = CURSOR FOR
        select name from sysobjects where OBJECTPROPERTY(id, N'IsUserTable') = 1 AND name like 'TR_%'
OPEN @C_Tables
FETCH @C_Tables INTO @Table
    SELECT @fs_e = sdec.fetch_Status FROM sys.dm_exec_cursors(0) as sdec where sdec.name = '@C_Tables'

WHILE ( @fs_e <> -1)
    BEGIN
        exec('Select * from '+ @Table)
        FETCH @C_Tables INTO @Table
        SELECT @fs_e = sdec.fetch_Status FROM sys.dm_exec_cursors(0) as sdec where sdec.name = '@C_Tables'
    END
49
задан David Bonnici 16 December 2008 в 20:36
поделиться

2 ответа

<input type="text" disabled="disabled" />

Посмотрите Спецификация HTML W3C на входном теге для получения дополнительной информации.

81
ответ дан Stoffe 7 November 2019 в 21:20
поделиться

Синтаксис для отключения ввода HTML следующие:

<input type="text" id="input_id" DISABLED />
9
ответ дан fasih.rana 7 November 2019 в 21:20
поделиться
Другие вопросы по тегам:

Похожие вопросы: