databound

When using stored procedure in sqldatasource of asp.net, none of databound items refreshes automatically??

Why is this the case? I was using simple text queries and it worked well. When I turned those queries in stored procedures, it does the job, but listviews and gridviews dont update/refresh automaticly. Help please. ...

Manipulate databound values in databound control? ASP.NET Webforms

Im working on the following markup, inside a databound control in ASP.NET Webforms. <asp:TemplateField HeaderText="DomainID"> <ItemTemplate> <% for (int i = 0; i < 10; i++) {%> <%#Eval("DomainID"); %> <% ++i; } ...

SmartGWT DataSource binding to ListGrid and DynamicForm

First let me warn readers not to pass me off to any links in isomorphic because it is highly probable I have read it and I have scoured the smartgwt showcase running locally here as I ask this question. What I ask is not documented and if it is, I am unable to decipher and need actual explanation here. No, do not tell me about SmartGWT E...

How to access the bound DataSource item in the ASP.NET ListView's DataBound event?

Hello everybody! I know the question has already been posted here but we didn't get to an real solution. I have bound my ListView to an SqlDataSource and I want to write some text in a control present in the view created in the LayoutTemplate depending on some properties of the rows returned. Obviously, I'm using the ItemDataBound eve...