Question : what's wrong with this SQL Data source

Hello experts,
Can someone tell me what's wrong with this data source in my .aspx file? It says the server tag is not well formed.

            <asp:SqlDataSource ID="ConditionReferencesGridSource" runat="server"
                    ConnectionString="<%$ ConnectionStrings:XXXConnectionString %>"
                    SelectCommand="SELECT r.[rman_id], r.[citation], r.[reference] FROM [References] r, [ConditionReferences] cr, [MedConditions] m where r.[rman_id] = cr.[rmanid] and m.[id] = cr.[conditionid] and m.[name] = " += Session["conditionName"]>
                    </asp:SqlDataSource>

thanks.

Answer : what's wrong with this SQL Data source

The error clearly states its because of parameter your passing from OLAP cube, its not able to set it correctly. Try without parameters first and see if it works, if possible make all parameters empty string n see if it works and later you can figure out which one is the wrong  parameter.
Random Solutions  
 
programming4us programming4us