Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

validation - Perl: What type should be used for class object in "validate" function -


i want pass reference of class object called "a" in constructor. , use "validate" function check it.

like that:

test1.pm

my $object = object1->new;  $newobject = object2->new({     param1 => $object, }); 

test2.pm

sub new {     $class = shift;      (%options) = validate (@_, {         param1 => { type => scalarref, default => undef},     });     ... } 

the problem i'm not sure type of parameter param1. tried "object" , "scalarref" there errors "scalarref not allowed while strict sub".

what type should use?

it looks you're trying quasi-moose thing here. in moose, don't create new subs, because moose you. if need anything--you create build sub.

the perl (5) base object system doesn't work moose, 'scalarref' or whatever make in base perl.

  • do realize passing hashref new?
  • do realize vaildate getting 2 hashrefs?
    validate( {}, {} )

and if scalarref has not been defined, bareword.

read on moose. can start moose types manual, see how scalarref used, since don't show "use moose", should start @ page 1 of manual.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -