Posts by Samuel Aalmeida • 127 points
13 posts
-
1
votes1
answer1355
viewsA: Password or invalid user when logging into oracle database (ORA-01017)
Try the following steps 1- Open the CMD 2-type: sqlplus "/as sysdba" 3- type: ALTER USER [SEU_USUARIO] IDENTIFIED BY [SUA_SENHA]; EXAMPLE: ALTER USER SYSTEM IDENTIFIED BY 1234; 4-type: COMMIT; 5-…
-
0
votes0
answers33
viewsQ: Windows does not show newly inserted files in a directory of a real android device /sdcard/Download/
I have an Android application that I import an Sqlite file into the application to perform the queries and changes. When finished manipulating I export that same file to a user-accessible folder so…
-
2
votes2
answers1605
viewsA: How to configure the Connection String in App.config?
Your code <connectionStrings> <add name="conection" connectionString ="Data Source =[InstanciaSQLServer]; Initial Catalog = BancoDeHoras; User id = [UserSQL]; pwd=[PWSQL]"/>…
-
3
votes1
answer186
viewsQ: Trying to pass Controller values to Global.asax.Cs to fill sessions
When I try to pass some value from my controller to the Global.asax the values received in the aggregate are always zero. Controller: public class LoginController : Controller { DataContext db = new…
-
-2
votes1
answer386
viewsA: Entity Framework 6: Select Error
Next guy gets into this public ICollection<Cliente> ObterTodos() { return _db.Set<Cliente>().ToList(); } You’re just coming into the class without making any queries so try public…
-
1
votes1
answer174
viewsQ: Loading Renderaction within _Layout
How do I load data from a model inside in my _Layout? I have a standard layout for all views of my project where in this layout lies the div where is the user photo that is in my application at the…
-
2
votes1
answer608
viewsQ: Get windows logged in user to automatically authenticate on a website published in IIS 7.5
I am creating a web application with ASP.NET MVC 5, where when a network user accesses the address of my application by the browser the systems already automatically pick up which user is trying to…
-
0
votes0
answers321
viewsQ: Error IIS 7.5 loading CSS and JS files, Error 403.14 in directory.
I published an Asp.net mvc 5 project on a server with Windows Server 2008 R2 and IIS 7.5, when trying to run the application it does not load the css and js files. Where in my project the files are…
-
0
votes1
answer854
viewsQ: Asp.net MVC cshtml Divs layout alignment?
Good afternoon! Dear friends, I am a beginner in the area of development and I have a small doubt. I have an ASP.Net MVC 5 project, where I have a layout inserted in my master page in…
-
0
votes1
answer669
viewsQ: How do my ASP.Net MVC project view folders with images?
I have a question, I have a folder with images included in my ASP.NET MVC project, but when my project is running it does not map this folder so it cannot include images to my site. I have the…
-
0
votes4
answers520
viewsQ: Diagonal movement Unity 5
I am a beginner in Unity 5, I am trying to create a game 2d, where I want to put diagonal movements after collisions, currently get my object after collision to be thrown up, but I can not in any…
-
0
votes2
answers1197
viewsA: Collision and Unity 3d reaction
The solution is simply to exchange Collider2D for Collision2D.
-
2
votes2
answers1197
viewsQ: Collision and Unity 3d reaction
I have a doubt in a script, I am creating a game made in Unity 3d. The doubt and the following, as I do to identify the collision between 2 objects and add a jump action to one of these objects, if…