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

  • Home
  • SEARCH
  • 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
I have an .aspx page that connects to a remote application. I want to
I'm making a web page using CGI scripting which has a form users need
I defined an EditText-field and I want to be informed when the user edits
In Wicket, I'd like to subclass TextField form component to add additional markup around
Hello friends i am to add optional parameter to pass these in a method
Here's some low-hanging fruit for those more comfortable with Javascript than I... I want
I am trying to use a handler to serve a file that is outside
I've created a customize web control with the combination of a Label, TextBox and
I am a newbie with c# and window form I am doing a web

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.