Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 144203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:12:59+00:00 2026-05-11T08:12:59+00:00

I want to add a text field to a web page that lets users

  • 0

I want to add a text field to a web page that lets users add space delimited tags. much like del.icio.us.

I am more interested in how I get them off the page and into the database using VB.NET and SQL.

Can anyone point me at any articles or code snippets on how I can achieve this using vb.net and sql 2005?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:12:59+00:00Added an answer on May 11, 2026 at 8:12 am

    Here is an oversimplifed example. I am using c# but converting it to vb must be trivial. You will need to dig into lots of more details.

    Assuming that you are using webforms, you need a textbox on your page:

    <asp:TextBox ID='txtTags' runat='server' /> 

    Assuming that you have a submit button:

    <asp:Button ID='btnSubmit' onclick='SaveTags' runat='server' Text='submit' /> 

    You would have a SaveTags method that handles the click event:

    protected void SaveTags(object sender, EventArgs e) {     string[] tags = txtTags.Text.Split(' ');      SqlConnection connection = new SqlConnection('Your connection string');     SqlCommand command = connection.CreateCommand('Insert Into Tags(tag) Values(@tag)');     foreach (string tag in tags)     {         command.Parameters.Clear();         command.Parameters.AddWithValue('@tag', tag);         command.ExecuteNonQuery();     }     connection.Close(); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an <input> field in my web page, and I want to add
hi there i am working on an asp.net web page that first lets users
i want to ask. How to add break after paragraph in one text field
I have a web page that has a few text boxes, and a dual
I want to add an edit text field to my app when i click
I have an form with a text area field. I want to add some
Hey guys, I'm trying to add a textfield.text entry to an array. I want
I want to have a Form that can Add or Delete TextFields. I was
I want to add text from my database to a UIWebView, but I have
I am using MenuBar from GWT showcase. I want to add text in the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.