I am passing several variables using a gridview and an objectdatasource. All of the fields are working correctly with the exception of the time datatype. I also have dates and had to use {0:d} (changing the zero to the number of the field containing the date). I tried using {0:t} but this does not work. Please help me!
Here is an example of what IS working:
<asp:HyperLinkField DataNavigateUrlFields="WPSer,EmpID,EmpFirstName,EmpLastName,ReqDate,ReqReason,EmpDigSign,EmpDate,SupvFirstName,SupvLastName" DataNavigateUrlFormatString="~/DisplayForSignature.aspx?WPS={0}&EID={1}&EFN={2}&ELN={3}&RD={4:d}&RR={5}&EDS={6}&ED={7:d}&SFN={8}&SLN={9}" DataTextField="WPSer" NavigateUrl="~/DisplayForSignature.aspx" />
Thank you in advance for any help you can provide! Linda
|