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
~393 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for satees

If its in a gridview, something like this works [code] <%# String.Format("{0:d}",Eval("dtmExpiration")) %> [/code] The whole grdiview might look something like this [code] <asp:GridView Width="100%" BorderWidth="0" CellPadding="0" CellSpacing="0" BorderColor="white" AutoGenerateColumns="FALSE" ShowHeader="false" ID="gvStores" runat="server"> <Columns> <asp:TemplateField> <ItemTemplate> <table> <tr> <td valign="top" width="110px"> <img border="0" src="images/<%# Eval("strLogo")%>" /> </td> <td valign="top" class="bluebodytext"> …

Member Avatar for SheSaidImaPregy
0
228
Member Avatar for Rocksoft

[url]http://www.codeproject.com/aspnet/AJAXWasHere-Part3.asp[/url] Use AJAX. Here is a textbox example...try it out, see if you can mold it to your needs.

Member Avatar for showtime
-1
75
Member Avatar for showtime

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 T.intStoreID = Stores.intStoreID, ( SELECT intStoreID , Min(intItemID ) AS MinSub FROM Items GROUP BY intStoreID ) AS S WHERE T.intStoreID = S.intStoreID ORDER BY T.intStoreID, T.intItemID The SQL …

0
90

The End.