Posts by Guilherme Bueno • 1 point
2 posts
-
0
votes1
answer105
viewsA: HTML embedded in C# dot net visual studio
Try to do the following: <li> <%= ((Usuario)Session["usuario"]).Nome %> <li/> Where Usuario is the type of data contained in Session "user" and the Nome is the property in the…
-
-1
votes1
answer204
viewsA: Problem doing refresh of quantity shopping cart C#
Should not contain a Where with the product key? Procedure: CREATE PROCEDURE [dbo].[AlterarQuantidade] IDCarrinho int, Quantidade int AS UPDATE Carrinho SET Quantidade = 500 WHERE IDCarrinho = 1…