Jump to content
  • 0

помогите разобраться с input


Vahmur
 Share

Question

Встретил вот такую конструкцию <input name="ctl00$cph1$UserName" type="text" id="ctl00_cph1_UserName"

подскажите, что означают $ в определении имени тэга input , и как этим можно пользоваться. Я так понял , что $cph1 и $UserNam - это две переменные, в которых хранятся части имени. Как их можно определять и где вообще об этом почитать?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Не совсем то. В таком виде тэг input встречается в чистом html-коде а то о чём Вы говорите - код php.

Возможно, $cph1 и $UserName какие-то серверные переменные и веб-сервер автоматически подменяет их на какое-то значение?

Посмотреть указанную ранее конструкцию тэга input можно, если открыть страницу http://freesap.ru/Client/View.aspx и затем в браузере пройти в меню: "Вид-Исходный код страницы" , смотреть строку № 431. Если бы это был php-код, то он бы не отображался.

Edited by Vahmur
Link to comment
Share on other sites

  • 0
Ну вот и покажите нам этот код то

Вот кусок кода в котором встречается то о чём я говорю:

...

Вход в систему</td>

<td class="TableHeaderRight">

</td>

</tr>

</table>

</td>

</tr>

<tr>

<td class="TableCellLeft">

<label for="ctl00_cph1_UserName" id="ctl00_cph1_UserNameLabel">Логин</label>

</td>

<td class="TableCellRight">

<input name="ctl00$cph1$UserName" type="text" id="ctl00_cph1_UserName" style="border-color:Black;border-width:1px;border-style:Solid;width:150px;" />

<span id="ctl00_cph1_UserNameRequired" title="User Name is required." style="color:Red;visibility:hidden;">*</span>

</td>

</tr>

<tr>

<td class="TableCellLeft">

<label for="ctl00_cph1_Password" id="ctl00_cph1_PasswordLabel">Пароль</label>

</td>

<td class="TableCellRight">

<input name="ctl00$cph1$Password" type="password" id="ctl00_cph1_Password" style="border-color:Black;border-width:1px;border-style:Solid;width:150px;" />

<span id="ctl00_cph1_PasswordRequired" title="Password is required." style="color:Red;visibility:hidden;">*</span>

</td>

</tr>

<tr>

<td colspan="2" style="font-size: small" class="TableCellLeftRight">

<input id="ctl00_cph1_RememberMe" type="checkbox" name="ctl00$cph1$RememberMe" /><label for="ctl00_cph1_RememberMe">Запомнить</label>

</td>

</tr>

<tr>

...

Интересующие строки выделены красным

Edited by Vahmur
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy