Pregunta

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

objCMD.Parameters.AddWithValue("@value", value)
¿Fue útil?

Solución

You want this

objCMD.Parameters.AddWithValue("@value", txtInput.Text).
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top