Posts by André Secco • 76 points
3 posts
-
2
votes1
answer539
viewsA: How to display dynamic images from a Listview?
You can do in the same way that loads the main list of images. In this block of code, you can leave so: <div id="divimagens" runat="server" style="position: absolute; left: 35%; top: 23%; height:…
-
0
votes1
answer944
viewsA: Reportviewer with Subreport - Error processing subreport
Opa, In his method SetSubDataSource try adding Datasource using the "e" you received as a parameter, for example, instead of doing: ReportViewer1.LocalReport.DataSources.Add(RDS1); Try changing to:…
c#answered André Secco 76 -
1
votes1
answer78
viewsA: How to request authentication in an Asp.net menu item
If you want to use the same system input authentication, you could force a logout using FormsAuthentication.SignOut(); when it clicked on the "Home" menu and redirected it to an authentication URL,…