5
Answers

Silverlight Application

Sweety

Sweety

13y
3.3k
1
i have created a form with some fields user can't able to enter any information until unless the user clicks on the edit button that i have provided in the form and when user click on the edit button user can enter the informantion and the button should changed to save and i aslo have reset button for eg if user enter information in one textbox  and click on reset the field should be blank same thing for 2 or more textbox.

How can i make it using silverlight.

Can any1 help me on this i have attached the image of the form
Answers (5)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
0
Priyank Khare

Priyank Khare

NA 306 66.8k 12y
thankx for reply but will it be work in case if i will display the total price....
because i think it will display an error during addition of price like "usd 1231 + usd 2465"

what will i do to resolve this problem.?
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
try this

before binding the datatable to gridview.
foreach(DataRow dr in datatable1)
{
dr["price"]=ConfigurationSettings.AppSettings["Currency"] + dr["Price"].ToString();
}

and in web.config.

<AppSettings>
<add key="Currency" value ="USD"/>
</AppSettings>