How do you declare a C# variable into an HTML type variable?
What's the C# equi开发者_如何学编程valent of
so you can use it for web forms in PayPal API integration?
If you have any decalaration of any C# variable in ASP.NET like a label or a text box type and in order for html or the client side of your web to be able to read what is on that decaration of the C# variable that you have declared this can do:
input type="hidden" name="name_type" value='textbox1.Text'
<% string name; %> ?
Just use
<% string name; %>
Is that what you mean?
精彩评论