I made a page where something entered in a TextBox, is displayed "as-is" on a Label control
Since i am a beginner, I just made:
Label1.Text = TextBox1.Text.ToLower();
Is this dangerous? I tried something but it seems that Label controls only takes text, i i felt confident that is safe
Maybe is dangerous if the user will insert some escape command?