Why can’t I assign null to decimal with ternary operator?
I can’t understand why this won’t work
I can’t understand why this won’t work
I am creating a report on an asp.net web page using an html table and asp.net lables. The finished report I have to send by email in the message body. I’ve done this with the following c# code:
I have a date string, returned from a ExtJS datetime picker, which looks like this:
I got a webpage where members can download different kind of files on. I wan’t to get information about which files and how many times each member have downloaded. when the user want to download a file he get browser pop-up where he gets 3 choises: “Open”, “save” and “Cancel”.(file dialog box in browser). i want to update the download status only if open/save button is clicked
I have a classic ASP site, that I am slowly upgrading. I would like to create a function to securely update a SQL database without specifying parameters manually. Something just a tad more dynamic.
Hello I want to remove the last word from my sentence in C#. Here is my query:
I upgraded DNVM with dnvm upgrade -Unstable. Running dnvm list shows this to be active: 1.0.0-beta6-12120.
I would like to extend UserValidator or something similar in Asp.net Identity 2.0 to not only check for unique email but also a unique value of my choosing. Example of what I would like to do with Alias below. Is this possible or do I have to write a check everywhere I can update Alias?
I want to change the color of the grdiview cell based on condition and the condition is that if Passport is about to expire with in one month or if it already expired so i want to check both condition if it is going to expire or if it already expired then i want to change the color into red. thanks
I’m trying to improve my application’s design, So instead of calling the DataAccess layer from the presentation layer. I’ll try to implement a save method from my object in the BusinessObjects layer. but I’m not sure how to pass the object or it’s properties through the layers. for example in my old design I just create an instance of my object in the presentation layer and assign it’s properties then just call the DataAccess method for saving this info in the database and pass the object as a parameter as illustrated.