I am trying to pass a variable from a method in my Controller to a method in a Model. Since the method in the Model takes one argument (which was designed earlier), I cannot pass my variable as an arg
Alright, I know this is a vague conceptual question, but I really need help here.Thanks in advance if you decide to take the time to read this.I would never even consider writing this much except this
I am writing some code that will prepare my database for my application. In the code there are some repetitive SQL statements when I am creating a table, and I want to hide them in some methods (there
Is there a reason why it can\'t work?? Here is a code sample : main.as package{ import flash.display.MovieClip;
I have a Javascript method that\'s called deleteObjectsDependingOnX(objects, X), is it conventional to have the order of parameters as objects first and then X, or the reverse?
<asp:GridView ID=\"GridView1\" runat=\"server\" AutoGenerateColumns=\"False\" BackColor=\"White\" BorderColor=\"#CC9966\" BorderStyle=\"None\" BorderWidth=\"1px\"
Can anyone explain to me how to pass multiple values into a parameter or variable in objective-c as below and how to handle it inside method:
I\'m no PHP expert and I\'m trying to set a cookie that contains a referrer code from the URL. For example: www.example.com?promotioncode=google should set a cookie name promocode, value what ever is
I have the following function (and I apologize for my horrible Ansi-C skills, or lack thereof): // Stick a PacketNode into a HashTree
I\'ve just written a function that returns a pointer to a block of memory allocated by malloc.If I call free() on the returned pointer, will this free the memory?