---
title: "Insert data from forms into datasets"  
description: "Insert data from forms into datasets"  
author: "Anonymous User"  
published: 2013-05-10  
updated: 2013-05-10  
canonical: https://www.mindstick.com/forum/852/insert-data-from-forms-into-datasets  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Insert data from forms into datasets

HI [Expert](https://www.mindstick.com/articles/13120/an-expert-financial-advice-will-improve-your-finances)!\
I have a [dataset](https://www.mindstick.com/articles/19/dataset) set up with 3 [fields](https://www.mindstick.com/forum/159126/sql-query-for-all-tables-and-fields-in-an-oracle-db), ID, [username and password](https://www.mindstick.com/forum/160407/how-does-a-bearer-token-differ-from-other-authentication-methods-such-as-username-and-password). I want the user to type in a new username and password and this then gets saved back to the dataset. \
How do I take what has been typed in and save it into the data set?\
So far this is the code I have\
usersTableAdapters.UsersTableAdapter user = new usersTableAdapters.UsersTableAdapter();user.usersDataTable usertable = user.GetData();\
This allows me to [connect](https://www.mindstick.com/articles/12810/how-to-connect-tablet-to-external-monitor-or-flat-screen-tv-using-computer-adapters) to the data set although I am not sure how to take the [values](https://www.mindstick.com/forum/327/sum-textbox-values) the user will enter in the [input](https://www.mindstick.com/forum/159209/how-can-i-read-convert-an-input-stream-into-a-string-in-java) boxes and save them back to the dataset?\
Thanks in [advance](https://www.mindstick.com/blog/33258/jee-mains-and-jee-advance-exams)! \

## Replies

### Reply by AVADHESH PATEL

Hi Chintoo!\
You can try as following. I hope it resolve your problem.\
DataSet ds = new DataSet();ds.Tables.Add(textBox1.Text); ds.Tables.Add(textBox2.Text); \
if (ds.HasChanges()) ds.AcceptChanges();


---

Original Source: https://www.mindstick.com/forum/852/insert-data-from-forms-into-datasets

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
