select left('Major2:' + space(20), 20) + (select major2 from allmajors where UniqueId=@userid)
gives me the following when i run the SP in SSMS.
Major2: not applicable
which is correct.
But in asp.net:
<asp:Label ID="Label6" Text='<%#Eval("Major2") %>' Width="375px" runat="server"></asp:Label>
I get the following displayed on the website, why?
Major2: not applicable
Thanks