Tagged Questions

2
votes
1answer
548 views

how to retrieve data from my database (formview) and multiply it, visual studio

I am using Visual Studio 2010, and I created a site (.aspx). I have an sql database (.mdf file) and I want to retrieve ONLY one value of the table and multiply it with a specific number. I have used ...
2
votes
1answer
435 views

C# Wholesale Order form - textboxes in Gridviews in Repeater

I'm building a wholesale order form on a website. The current plan is to... -get an ArrayList of DepartmentUnits -a DepartmentUnit has various attributes like "deptId", "description" and its own ...
1
vote
1answer
106 views

I cannot retrieve my groups using Facebook SDK 5.1 using C#

I am using the Facebook SDK and I am trying with C# to get the groups the user is subscribed to. The code is as follows JsonObject Groups = (JsonObject)client.Get("me/groups"); After this code ...
1
vote
2answers
542 views

Taking picture with EDSDK and retrieving it immediately

For few days I've tried to retrieve the taken picture from camera. Today I found EdsSetPropertyData(cRef, PropID_SaveTo, 0, 4, 2); which doesn't save the picture to camera. But my problem is ...
0
votes
1answer
46 views

Programmatically retrieve selection of context menu

this question is basically me asking how to go about writing something that will do the above mentioned. I'll explain it in the physical first: I'm not sure if everyone is familiar with DropBox but ...
0
votes
0answers
200 views

retrieve timestamp from facebook's inbox messages

Each message is stored with a time stamp that show when the message was created. The time displayed on the page however is just a date like so: '24th July' rather than '24th july 22:49'. I need to ...
0
votes
1answer
66 views

How to capture the image in picturebox and make it downlodable in c# application?

im developing a c# application (Photo Album Viewer), Im having Picturebox (Displays the selected image in List ) and listbox (Lists the images available ibn database table ). I can upload and store ...
0
votes
1answer
29 views

Retreiving Mails/Attachements from Exchange Server

I am trying to connect with a mailbox on our exchange server, and I have the servername, username and password. At the moment I have the following code to connect to my personal mailbox and this is ...
0
votes
3answers
564 views

how to read and write MP3 to database

how to read MP3 from Sql database. in sql i have stored the file as binary format. now i want to retrive the Mp3 file stored in the sql and show in my aspx page. how???? pls help...
0
votes
2answers
71 views

Retrieve method/code from many files

I have many .cs files and I want to retrieve the method behind the [AcceptVerbs(HttpVerbs.Post)] attribute from these files automatically. so input is: [AcceptVerbs(HttpVerbs.Post)] public ...
0
votes
3answers
462 views

How to retrieve the elements in list without using foreach loop in C#?

How can I retrieve the elements from a list without using a foreach loop?
0
votes
5answers
316 views

How to create a list inside the another list?

I would like to create a list inside another list. How can I do this? And how do I retrieve values from the list which is inside another list?
0
votes
4answers
2k views

Asp.net retrieve domain url

I want to retrieve my domain url in asp.net. for example, if my url = http://www.mydomain.com/blog/currentPage.aspx?id=156, I just want the part: http://www.mydomain.com/blog/ can anyone help me ...