Posts by Raphael Gumm • 253 points
11 posts
-
0
votes1
answer91
viewsQ: Formatted text box(code sample)
I need to display information on the screen but it needs to be displayed as code(javascript, c#) formatted and color(code sample), there is some component in jquery or something like that ? Example…
-
0
votes0
answers125
viewsQ: HTML fixed element with scrollToFixed
I’m using the scrollToFixed plugin to work with fixed elements on the screen. What I’m trying to do is, I have a div, and when my header hits a certain point, I want that div to move along and when…
-
0
votes3
answers1207
viewsA: Javascript Change css when you are in a particular div
You can use Jquery to do this. What you need to define is the action that will change these colors, example: click, change, etc. $('#IdLogo').css('background-color','red');…
-
4
votes3
answers2089
viewsQ: Calculate on which days of the week the days of the month fall
I created a javascript function that assembles a calendar. I need this calendar to assemble according to the number and days of the week of the given month. Ex(August 1 fell on a Tuesday). I also…
javascriptasked Raphael Gumm 253 -
4
votes4
answers2257
viewsQ: Check if user is logged in
I would like to know how to block access when the user is not logged in to the system, however, the only page that can be accessed is the Login and when he tries to access any other page redirect to…
-
2
votes2
answers321
viewsQ: Script to make a div appear
I have a user registration in my application, when I click register wanted to show a message. This whole treatment I’m already doing and playing the message in my Viewbag.Message. How do I show this…
-
1
votes0
answers27
viewsQ: Validations of the Identity
I’m not able to find where Identity does the validations, I’m having trouble registering a new user. Does anyone know where this is validated ?
-
0
votes1
answer166
viewsQ: Error Identityconfig
I am trying to implement Identity in my project but my Identityconfig is giving several errors. I just started messing with Identity and I’m hitting myself a little. Packages.config <package…
-
8
votes2
answers7119
viewsQ: How popular a Dropdownlist from another Dropdownlist
I need to know how to popular a Dropdownlist from another Dropdownlist. Example: I have a Dropdownlist called Project that takes information from my DB. When I select for example "Project 1" I need…
-
3
votes1
answer308
viewsQ: How to use Html.Beginform with Javascript/Ajax
I have a View to generate Report on my system and I am using a Beginform. The idea is when I give the Ubmit to my Gridrelatorium, which is another View, press inside one that I have inside in the…
-
2
votes0
answers361
viewsQ: Doubt about using Identity in layers
I created an Aspnet MVC project with Identity to understand how the Identity part works. I made changes to the code, including roles and Claims. I switched this project to a company project, but the…