Posted on: 4/19/2014 5:07:29 AM | Views : 475

How to pass parameter while calling a class file in aspx.cs
my class file,
public ExifMetaInfo(Uri imageUri) { BitmapFrame bFrame = BitmapFrame.Create(imageUri, BitmapCreateOptions.DelayCreation, BitmapCacheOption.None); _metaInfo = (BitmapMetadata)bFrame.Metadata; }
I am calling this in my aspx.cx as,
protected void Page_Load(object sender, EventArgs e) { WPFExifInfo.ExifMetaInfo classfile = new WPFExifInfo.ExifMetaInfo(Uri imageuri); }
here showing error in (Uri imageuri); pls help me to solve this,
THANKS IN ADVANCE

Go to the complete details ...