How to autofill a website form using c#
How to autofill a website form using c#
Status:
Open Nov 25, 2009 - 03:07 AM
Websites, forms
4answers
Answers
Jul 29, 2010 - 02:57 AM
What do you mean autofill?
Use the Page_Load to load everything
Jul 29, 2010 - 03:40 AM
Hope you heard last pass, it will autofill the textbox which is saved before. It also has autologin options. I want to do something lik that..
Jul 29, 2010 - 03:47 AM
One way to do it is use session
Dataset dsLogin = new DataSet();
Session["myLogin"] = dsLogin;
DataTable dt = new DataTable("tblLogin");
DataColumn[] keys = new DataColumn[1];
DataColumn myColumn;
//create userNameColumn
myColumn = new DataColumn();
myColumn.DataType = System.Type.GetType("System.String");
myColumn.ColumnName = "UserName";
dt.Columns.Add(myColumn);
in the next page just call the session myLogin and extract the data from there
Mar 31, 2012 - 10:57 AM
The question looks to be abandoned by the user who asked it. If no action is taken within 2 days, a Quomon Moderator will consider closing the question and distributing the points.
The Quomon Team
Answer this question
Share Your Own Experience & Expertise
We look to ensure that every question is answered by the best people with relevant expertise and experience, the best answers include multiple perspectives. Do you have relevant expertise or experience to contribute your answer to any of these commonly asked questions?
Add New Comment