Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
QMIMike  
#1 Posted : Wednesday, December 21, 2011 4:06:51 PM(UTC)
QMIMike

Rank: Newbie

Groups: Member
Joined: 12/21/2011(UTC)
Posts: 1

When I call the URL, I am including this at the end of the URL based on the URL builder on your website;

&fields=StoreID%3Dd21373;

I am using all of the .cs files from the demo project. Everything is working find, but I cannot figure out how to grab the extra information (StoreID=d21373) I am sending through the URL. Which of the files do I need to look for this info; BaseGallery.cs, SourceGallery.cs, ThumbnailsGallery.cs, or Utils.cs?

The ultimate goal is to send a user an email for each picture that is uploaded. I have this all working as well. I just need to include this piece of information in the subject line so he can sort by subject.

Thanks for making this program free!! It was super easy to incorporate the demo app and get everything working!

Dmitry.Obukhov  
#2 Posted : Wednesday, December 21, 2011 9:33:22 PM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Mike,

Thank you for your comments :)

You should get value of field though Request.Form("NameOfField"), e.g.:

you send field StoreID=d21373. Then on server-side you can get it using it:

Code:
string myfield =  Request.Form("StoreID").ToString();

If you have any questions or problems, please feel free to let me know.

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.