Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~164 People Reached
Favorite Forums
Member Avatar for tan123

Hi, I have a scenario for which I wanted the best solution in asp.net c#. My web application allows users to retrieve search data from database, this data is the users own temporary list of records which they can search, delete records or select them. All these actions are only …

Member Avatar for tan123
0
132
Member Avatar for tan123

Hi, In my asp.net application (an inhouse software) I want users to be able to use files from Network (filepath stored in database). I use the following code to download the files: string strAttachmentID = ((Label)GridViewNotes.Rows[GridViewNotes.SelectedIndex].FindControl("lblAttachmentID")).Text; int AttachmentID = Convert.ToInt32(strAttachmentID); Attachment attachment = Attachment.GetAttachment_ByAttachmentID(AttachmentID); string str = @"\\" + attachment.FilePath; …

0
32