| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 9 months |
| seen | 8 hours ago | |
| stats | profile views | 69 |
|
Jun 3 |
comment |
asp.net-mvc routing issue : parameters dictionary contains a null entry for parameter If you want to be able to call Add without specifying the id, fixtureId should be nullable - int? fixtureId. "Optional" in the context of the route means it doesn't have to be in the URL, so that you can have actions like public ActionResult Add() {/*no parameters*/} |
|
May 30 |
answered | Check how many changes were made by UPDATE |
|
May 30 |
comment |
Check how many changes were made by UPDATE Pseudo-code? Is your loop exit condition that the affected rows by the update are 0? |
|
May 18 |
awarded | Notable Question |
|
May 10 |
comment |
C: Incompatible type on dynamic array of pointers of structure I hope you realize you're still not creating the dynamic array properly. A dynamic array with elements of type pArmario should be of type pArmario*, so that you get pArmario elements when you index it like this: pArmario[0]. Your way of indexing the array would look weird to anyone reading your code. |
|
May 10 |
answered | C: Incompatible type on dynamic array of pointers of structure |
|
May 10 |
answered | vs2010 dll linking without a reference |
|
May 10 |
comment |
vs2010 dll linking without a reference The dependencies of your dependencies are not required for your project to build. They are required for it to run, though. Your project only needs to know what d1 provides. When the project is run, d1 is loaded, and it should then try to load d2. |
|
May 9 |
comment |
.NET returning incorrect username @JenniferNolan You applied the fix to the web server, not the domain controller, right? |
|
May 9 |
comment |
.NET returning incorrect username Other than that, the name could be cached by the server. See KB946358. |
|
May 9 |
comment |
.NET returning incorrect username Every user has two logon names: User logon name and User logon name (pre-Windows 2000). Make sure you've corrected both. |
|
May 9 |
answered | C++ errors when compiling |
|
May 8 |
revised |
Model Validation in ASP.NET MVC deleted 26 characters in body |
|
May 8 |
answered | Model Validation in ASP.NET MVC |
|
May 8 |
awarded | Popular Question |
|
May 7 |
revised |
Why can I not use std::cin.getline() twice in succession? Some info about the `failbit` and its effect, as comments have suggested |
|
May 6 |
revised |
Why can I not use std::cin.getline() twice in succession? added 258 characters in body |
|
May 6 |
answered | Why can I not use std::cin.getline() twice in succession? |
|
May 4 |
answered | Error on !String.IsNullOrEmpty(s)) |
|
May 3 |
awarded | Popular Question |