ASP.NET - Password char enabled textbox data binding
Asked By vadivu eagaraja
03-Feb-12 02:01 AM
Hi all,
is it possible to bind data to an password char enabled textbox from db?
if so how to achieve it? Help me to solve
thanks,
vadivukkarasi
Reena Jain replied to vadivu eagaraja
Hi,
If you are using textbox as password character enable the it only shows password char to user, but in back end and in database its save as English character not the password character, so you can bind the grid or other controls normally as is.
vadivu eagaraja replied to Reena Jain
hi,
from textbox to DB field k,
i asked about from DB to textbox
dipa ahuja replied to vadivu eagaraja
Yes you can do it
Implement the RowDataBound of Gridview
//Code to bind the textbox
txt1.TextMode = TextBoxMode.Password;
txt1.Attributes.Add("value", txt1.Text);
vadivu eagaraja replied to dipa ahuja
dipa ahuja replied to vadivu eagaraja
Net hi friends Any one send frequently asked Important questions in C# .Net, ADO .Net, Asp .Net and Sql Server. . . . . . . . tx in Advance. . . . . . Hi, Find this. . (B)What is an IL? (B A) What is scavenging? (B) What are different types of caching using cache object of ASP.NET? (B) How can you cache different version of same page using ASP.NET cache object? (A) How will implement Page Fragment Caching? (B) Can you compare ASP.NET sessions with classic ASP? (B) Which are the various modes of storing ASP.NET session
net ADO is designed primarily for connected access ADO.net the disconnected access to the database is used In ADO you communicate with the database by making calls to an OLE DB provider. In ADO.NET you communicate with the database through a data adapter (an OleDbDataAdapter, SqlDataAdapter, OdbcDataAdapter, or OracleDataAdapter object), which makes calls to an OLE DB provider or the APIs provided by the underlying data source. In ADO you cant update the database from the recordset. ADO.NET the data adapter allows you to control how the changes to the dataset are transmitted to the database. On order to get assembly info which namespace we should import? System.Reflection Namespace How tab”) This will fill the dataset with the records starting at 5 to 15 .NET Database interview questions How do you call and execute a Stored Procedure in.NET? Give an
Migration from ASP to ASP.net How to convert ASP site to ASP.NET site using C# http: / / www.asp.net / downloads / archived-v11 / migration-assistants / asp-to-aspnet hi, ASP.NET framework is very much different from unstrucured ASP and there is no correct way to
Tracing in ASP.NET? hi all, what is tracing? how to achieve tracing in asp.net? different ways of doing tracing? thanks and regards Aman Khan hi. . Tracing in ASP.NET 2.0 Tracing is a way to monitor the execution of your ASP.NET application. You can record exception details and program flow in a way that doesn't
session is user based mean u can differentiate login user in different way • Process independent. ASP.NET session state is able to run in a separate process from the ASP.NET host process. If session state is in a separate process, the ASP.NET process can come and go while the session state process remains available. Of course, you ASP, too. • Support for server farm configurations. By moving to an out-of-process model, ASP.NET also solves the server farm problem. The new out-of-process model allows all servers