tags:

views:

68

answers:

3

What's the C# equivalent of

<% dim name %>

so you can use it for web forms in PayPal API integration?

+1  A: 

<% string name; %> ?

klausbyskov
+1  A: 

Just use

<% string name; %>

Is that what you mean?

Razzie
+2  A: 

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'
Marlo