Forum: ASP.NET Jan 3rd, 2007 |
| Replies: 1 Views: 4,468 http://www.codeproject.com/aspnet/AJAXWasHere-Part3.asp
Use AJAX. Here is a textbox example...try it out, see if you can mold it to your needs. |
Forum: ASP.NET Jan 3rd, 2007 |
| Replies: 0 Views: 2,773 SELECT Stores.strStoreName,
(CASE WHEN T.intItemID=S.MinSub THEN Stores.strLogo ELSE NULL END) AS displayCategory,
T.txtDescription
FROM Items AS T
INNER JOIN
Stores ON... |
Forum: ASP.NET Jan 3rd, 2007 |
| Replies: 5 Views: 19,655 If its in a gridview, something like this works
<%# String.Format("{0:d}",Eval("dtmExpiration")) %>
The whole grdiview might look something like this
... |