I am developing windows phone 8 app. I am having textbox and buttons and image in listbox. When I added data to above columns then on click on button I am saving data in windows azure. This is working fine. when I click on image I am geting its index and all values related to it. Now i can change these values if wants. and when click on button update query should get fire for selectes index. How to find update query for selected index in WINDOWS PHONE 8 when click on button I want to fire update queryfor updating values of textbox in windows azure database.
1
There are 1 best solutions below
Related Questions in WINDOWS-PHONE-8-SDK
- How can I run multiple Windows phone 8.1 emulators concurrently?
- windows phone 8 application - override phone call task
- Publish Windows Phone 8.1 app
- Visual Studio Community 2015 - can't see emulator or device for 8.1 mobile
- Creating a local database in windows phone app 8 using vs2012
- How to animate images in windows phone 8 apps development?
- How can I change the color of selected item in combobox to my custom color in windows phone 8
- one project two apps (paid and free) on Windows phone
- Specify Lifetime For Durable Products in Windows Phone 8
- windows phone 8 emulator slow internet connection
- connection established but unable to send and receive message to server using Socket Programming in windows phone 8
- How to update record in windows phone 8
- What does "managed" API means in Windows Phone 8 API
- Windows Phone App 8. Can't display data in xaml markup
- GUI for video files in the Windows Phone Isolated Storage
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
IMobileServiceTable table = App.MobileService.GetTable();
var account = table.Where(o=>o.YOUR_INDEX_FIELD).Take(1).ToListAsync();
List list = await account; list[0].VALUE1= VALUE_OF_TEXTBOX;
await table.UpdateAsync(list[0]);
Add async keyword when defining the class for particular table.