Posts by Will Palaro • 124 points
6 posts
-
0
votes1
answer39
viewsA: Doubt - Query SQL Server 2012
See if that’s it SELECT CASE WHEN dateadd(day, 5, T.TarVencimento) < getdate() THEN CAST(datediff(day, TarVencimento, getdate()) AS VARCHAR) ELSE '0' END +' (TEMPO)' FROM Tarefa T…
-
1
votes1
answer211
viewsA: Help to write to USERS and Aspnetusers at once
I think you could do the following: Keep only the Aspnetusers table and include the properties of your old table ( Including the ID, leave it as a Unique field in the database and use it to make the…
-
1
votes2
answers1142
viewsA: How to Increase Time Timeout webForm
Tried to reset the IIS? On IIS, the/website application has a Session State setting tbm. See if it’s picking up your settings. If this doesn’t even work, try changing Session.Timeout by code at the…
-
1
votes1
answer341
viewsA: Aspnet.Identity Creating user with Role
Although you instantiated the Gpsdentitiesidentity class, Userstore and Usermanager do not use this object or the transaction object you created.. so this chunk of code is being kind of ignored. The…
-
1
votes2
answers108
viewsA: How is jQuery built?
The jQuery has a engine DOM objects selection base. This engine returns the encapsulated objects in jQuery’s own objects. These jQuery objects that encapsulate DOM objects are extensible and can…
-
0
votes1
answer39
viewsA: Read XML and create Objects using LINQ in VB.NET
To work with XML vc you have some tools available in . Net Framework. The Xpath and the Xmlserializer. In Xmlserializer vc creates a class structure that corresponds to the XML structure you are…