Every app I create use IoC, don't worry about that. ;-)
Your answer is more trying to give me programming tips, not what I asked for but you hint in there (unless I got it wrong) that they can...
Type: Posts; User: Krokonoster
Every app I create use IoC, don't worry about that. ;-)
Your answer is more trying to give me programming tips, not what I asked for but you hint in there (unless I got it wrong) that they can...
Hi,
In my web application I created a custom implementation of the standard .net membership and role providers, using nHibernate. Works fine.
Now I have the requirement that client's should...
Hi,
For what it matter I know my html/css/js/jquery (and asp.net mvc, etc for the matter, though not usefull here other than creating service endpoints for a mobile app using asp.net web api)
I'm...
Hi,
Excuse me being vague, but never did something remotely like this.
Will need to build a call-center like app, where the app pops up a member, and the call center operator click on it and a...
Just taking a guess here and think you mean programming micro-controllers?
Really a C / C++ noob (doing .net for years also) and also (if guessed right) getting into programming micro-controllers...
Yep, learned that much. A bummer though.
Never used Crystal, so bear with me.
I’m using Crystal Reports 2008 (Version 12.0.0.683) Product Type : Full
From my .net project (asp.net mvc 4 / c#) on my local machine I can generate reports...
Installed Crystal for the first time in my life this morning, so please bear with me if my questions are n00bish and my reply's contain more "huh's" than anything else.
In my database I save...
Hi,
Since I don't know much about Crystal Reports, I'm not sure how much of the following relate to MVC. Forgive me if it's totally unrelated (and feel free to move my post, mods)
My company...
I like the using GUID as id idea. (dang, i wanted to go with that in the beginning)
You just educated me. I made the assumption GUIDs are unique. lol
Thanks!
Hi,
Got a problem after a file uploading function have been abused and now must figure out a solution on my side.
In a nutshell, I have 5 different tables, not related to each other and my only...
Ok
I'm not sure if you used jQuery.DataTables before? It have a search function (happening client-side by default) where you can type in parts of the value in one column, part of value of another...
I will have a search string but need to search by each individual string in it, so I'm creating an array:
string[] criteria = param.sSearch.Split(' ');
Now the first issue is that say "Jack ",...
Hope nobody mind I'm posting to the C# forum, since I do not have a clue how / if the following can be done.
Hoping that it would be possible for mobile apps to send out automated text messages...
Hi,
First off, I'm not a mobile phone developer and not intent to get into it (too busy with web/db/etc)
However I'm being blind-sided (or so it feel) by the guys we partner with developing the...
Hi,
Anyone know if there's some kind of service that will periodically check if your website / server is still online and alert you (email?) if it's not?
Ideally would be a mobile app. I...
Will see if I can figure it out, but right now get the following exception:
Bit of a though request from boss, and did not want to say "Dunno how"
Each time a new product are added I must assign it a product code, which will be a 3 digit numerical code.
For the first 9...
wow...would need to study a whole book to figure that one out. Thanks.
Not totally right though. Should have used demo names so I could post the actual data, but what I have now:
* I have 1...
Hi,
I'm showing a list of services which have the following members (removed non-relevant ones):
public string Name { get; set; }
public bool Compulsory { get; set; }
...
hmm. I just found out the desktop app in use (vb.net... i use mvc/c#..it's a web app) generate these forms that way. (exactly the forms I need to generate)
Before looking into it, would i be wrong...
Hi,
Using data posted by a mobile app to my database (via a web api) I will need to create PDF forms with the data filled in as if a user did that.
I never did PDF generation, so some "points" that...
How to one ensure the following will add an option to a dropdownlist, but at the top of the list? (since the list will already be populated in my case)
$.fn.prependSelect = function (value,...
Hi,
My jQuery skills are not that wonderful, and wanted to ask if someone can help me modify this plugin.
Basically I need to be able to specify a callback event that need to be fired after line...
I got it working now (phew!)....but ONLY if I put in breakpoints in FireBug when binding to the events.
Otherwise it seems the modal.show get called before it the binding to the show even occured,...
k, will give it a shot.
Used to use firebug, but for some reason using chrome last months and never really figured out it's tools.
Will post answer here when found problem. Probably just sth...
Yep, it's 1 every time. (just checked)
There's definitely not 2 checkboxes by the same id.
The view over which it open have something having the same Id as the name/id of these checkboxes.
Did...
Nope, but now I'm not so sure what is really my problem:
Look at this code:
if (jQuery.inArray(id, currentSelection) > -1) {
// just to make sure $(this) is the checkbox
...
Here's the full plugin script. I'm not sure if it got anyhing to do with my content (the list with checkboxes) being loaded at runtime (asp.net mvc partial view)
plugin:
(function ($) {
...
Hi,
Got an array of id's, and just want to go over all checkboxes and check those whose id are in the array.
However seems no syntax I'm using will check the checkboxes...
......
if...
Hi,
I ended up last week with a really ugly piece of non reusable code where I basically wanted to open a modal, passing some data to it, and return data back when the modal close.
After some...
lol. Was a typo the provider made. .asmx not .asm
All fine.
Hi,
My WCF knowledge are pretty limited (mostly creating services using web binding).
I'm asked to use a web service a client have we will be integrating with, and unsure what is this and how to...
Solved it. Problem was in my configuration. (stupid one)
// duuuh!!!
//mapper.AddMapping<UserMap>();
// should be this.......
Hi,
[Not sure where to post, since it's an nHibernate Question]
I'm stuck using the newer build in mapping by code with nHibernate in a many to many relationship between my User and Role objects ...
Custom Membership and Role Providers using nHibernate.
Awesome, thanks!
Did not test it yet, but much shorter / more readable:
public override string[] GetRolesForUser(string username)
{
try
{
User user =...
Hi,
The following work, but I'm pretty sure can be converted to a LINQ query, and been wasting time on it (Not necessary, but curiosity can be a killer sometimes)
(User got a member of type...
This perhaps rings a bell?
"NetworkError: 405 Method Not Allowed - http://localhost:8732/service1/GetAnyString"
trying your method and seems to work....FireBug show this error though.
Okey dokey, I'll give it a shot.
I pretty much started rewriting some service the guy before me did not finish (it was in vb.net and did not use JSON at all) so in many places did the same he...