M
Maras
Hello,
as we know VB is not case sensivity. I have a following problem,
I have to send to another server few parametrs by post or get method,
one of them MUST be a "clientID", it's preety simple, but in VB .NET
there is a property ClientID and I get an error, a conflict beetwen
my clientID and ClientID of MyBase class
aspx code:
****
[...]
<form action="page2.aspx" runat="server" method="post">
<input type="text" id="clientID">
<input type="submit" value="Submit">
</form>
[...]
****
aspx.vb code
****
[...]
Protected clientID As System.Web.UI.HtmlControls.HtmlInputText
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
clientID.Value = "i have to do something with this value here"
End Sub
[...]
****
Haw can I solve this problem? In c# this works (case sensivity).
Thanks
Cheers
as we know VB is not case sensivity. I have a following problem,
I have to send to another server few parametrs by post or get method,
one of them MUST be a "clientID", it's preety simple, but in VB .NET
there is a property ClientID and I get an error, a conflict beetwen
my clientID and ClientID of MyBase class
aspx code:
****
[...]
<form action="page2.aspx" runat="server" method="post">
<input type="text" id="clientID">
<input type="submit" value="Submit">
</form>
[...]
****
aspx.vb code
****
[...]
Protected clientID As System.Web.UI.HtmlControls.HtmlInputText
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
clientID.Value = "i have to do something with this value here"
End Sub
[...]
****
Haw can I solve this problem? In c# this works (case sensivity).
Thanks
Cheers