Posts by Jothaz • 1,924 points
56 posts
-
0
votes2
answers116
viewsA: How to debug to know which database or table are running with Asp.Net
When you used a page your page.aspx is created the Codebehind of it with name_your_page.Cs is where your Repeater is being loaded. Edit this page . Cs and find rptGerenciaProcessos.Datasource on it…
-
1
votes2
answers365
viewsQ: Recover data from a Linq SQL query with Join
In the presentation layer I call a method consLaboratorio who is in a namespace separate where all access to the data is carried out. This method returns an object MiddleOneReturn with: codeErro (0…
-
0
votes1
answer298
viewsQ: Keep gridview data source in post-back
I have a gridview that is filled by a web-service with data coming from SAP. It can return up to 2000 row with 30 columns. This content is always the same, so when running the web-service 10 times…
-
0
votes1
answer91
viewsQ: Visual Studio 2010 Professional does not display Visual Studio Solutions
Visual Studio 2010 Professional which has in Add-> New Project-> Other Project Types does not display Visual Studio Solutions. I saw several posts on the internet indicating to solve the…
-
2
votes2
answers608
viewsQ: Use of the Ienumerable
I saw an example in another post about the use of IEnumerable var ent = new EntFuncionarios(); IEnumerable<Funcionario> funcionario = ent.Funcionarios; IEnumerable<Funcionario> temp =…
-
1
votes2
answers7885
viewsA: Grab parameters passed by url on another page
Use: string CdProcesso1 = Request.QueryString["CdProcesso"]; string CdProcesso2 = Request["CdProcesso"];