Hi,
DepartureDate = TextBox(jqueryDatepicker).
from= Textbox
To=textbox
Lodging=Textbox
foodbill=Textbox
DailyClaim=Textbox
Bill documents=Textbox upload(button)
ADD(button)
After Press The ADD Entire Details LL display GridView(alredy done These Much)
upload documents in ll show on My gridview
Now My requirement is possible to show upload attachement depends on the Logged in users?
Loading
Rocky RockyPosted Aug 29, 2013, 7:28 AM
I added My code here now i My problem is how add the code for upload and delete that depends gridview delete (on request_id)
the table structre of txt_comments values stored
create table travel_request
(
user_id int,
request_id int ,
travel_purpose varchar(40),
total_amount varchar(40)
)
treavelrequest pannel ll save here
create table travel_claim
(
claim_id int,
request_id int references travel_request(request_id),
Lodge varchar(30),
food varchar(50),
daily_allowance varchar(30),
)
here travelrequest pannel i can add and delete the values depends on request_id like the same i wanna upload the files and delete the browsed file depends on request_id how to that?
as per references these link
http://www.aspsnippets.com/Articles/Download-Files-from-GridView-using-LinkButton-Click-Event-in-ASPNet-using-C-and-VBNet.aspx
i can upload the file and delete separtely how to club in My code?
Abhishek JainPosted Aug 29, 2013, 6:57 AM
Please provide some code you have written, and if possible please provide the requirement again clearly.
Regards
AJ