Webフォームにいくつかのボタンがあり、ユーザーがクリックするとテキストボックスが更新されます。これは、textmode = passwordを追加するまで機能しました。今度はテキストボックスにテキストが表示されなくなりました。私はアプリをデバッグし、テキストプロパティは値を取得していますが、もう一度表示されません。ここでテキストモードのテキストボックスにテキストが表示されないasp.net c#
は、私が試したものです:
protected void btn_punch_7_Click(object sender, EventArgs e)
{
const string string_punch_Number_7 = "7";
var text = txt_punch.Text;
text += string_punch_Number_7;
txt_punch.Text = text;
}
protected void btn_punch_8_Click(object sender, EventArgs e)
{
const string string_punch_Number_8 = "8";
var text = txt_punch.Text;
text += string_punch_Number_8;
txt_punch.Text = text;
}
私もこの疲れがあります:あなたはパスワードのTextBoxのテキストモードプロパティを設定すると
public partial class WebForm3 : System.Web.UI.Page
{
public string string_punch;
protected void Page_Load(object sender, EventArgs e)
{
MultiView1.SetActiveView(View1);
txt_punch.Width = 300;
txt_punch.Height = 50;
txt_punch.MaxLength = 4;
txt_punch.Attributes.Add("OnChange", string_punch);
}
protected void btn_punch_7_Click(object sender, EventArgs e)
{
const string string_punch_Number_7 = "7";
string_punch = txt_punch.Text;
string_punch += string_punch_Number_7;
txt_punch.Text = string_punch;
}
protected void btn_punch_8_Click(object sender, EventArgs e)
{
const string string_punch_Number_8 = "8";
string_punch = txt_punch.Text;
string_punch += string_punch_Number_8;
txt_punch.Text = string_punch;
}
パスワードフィールドにテキストを表示しないでください。あなたがテキストを強制すると、誰でもあなたのサイトのHTMLを見てパスワードを得ることができます。 –
@ bastos.sergioどのくらい大きな問題ですか? HTMLはどこにも保存されません。パスワードを入力する人が提出する直前にページをディスクに保存しない限り。 –
これを保存する必要はありません。サイトのどこでも右クリックして、「ソースコードを表示」オプションを選択してください。それはあなたがhtmlを見るために必要なすべてです... –