TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ok ok
NA
34
3.8k
Search from Multiple filepath
Feb 6 2017 10:35 AM
experts,
i would like to search files from multiple file path . how to achieve the same . current code is searching from one filepath only . need to search the same from multiple file path.
current code which is not working ?
protected
void
gvEmployeeDetails_RowCommand(object sender, GridViewCommandEventArgs e)
{
if
(e.CommandName ==
"Download"
)
{
Response.Clear();
Response.ContentType =
"application/octect-stream"
;
Response.AppendHeader(
"content-disposition"
,
"filename="
+ e.CommandArgument);
Response.TransmitFile((
"S:/Acc/Odoc/EMENTS/GRADE/"
) + e.CommandArgument);
Response.TransmitFile((
"S:/Acc1/Odoc/EMENTS/GRADE/"
) + e.CommandArgument);
Response.End();
}
Reply
Answers (
2
)
Items collection cannot be modified when the DataSource prop
I have a C# program that I cannot get to work. Seems easy:(