Question

How do I pass value that is entered into a text input field to following

objCMD.Parameters.AddWithValue("@value", value)
Était-ce utile?

La solution

You want this

objCMD.Parameters.AddWithValue("@value", txtInput.Text).
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top