سؤال

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

objCMD.Parameters.AddWithValue("@value", value)
هل كانت مفيدة؟

المحلول

You want this

objCMD.Parameters.AddWithValue("@value", txtInput.Text).
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top