本文介绍了获取+变量的符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在将A +输入文本框并像这些一样重新获取值



textbox.text = A +

Response.Redirect( SearchDonar.aspx?Search =+ TxtSearch.Text);



string i = Request.QueryString [Search]。ToString();



但是我在字符串i中得到A而不是A +



如何获得我输入的值一个文本框

解决方案

I am entering A+ into a textbox and retriving the value like these

textbox.text=A+
Response.Redirect("SearchDonar.aspx?Search="+TxtSearch.Text);

string i = Request.QueryString["Search"].ToString();

but i am getting A not A+ in the string "i"

how to get the value what i had entered into a textbox

解决方案


这篇关于获取+变量的符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 14:59