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
~2K People Reached

3 Posted Topics

Member Avatar for Ennio

Hello I have the same question about using Images in a datagrid. I want to bind the image dynamically in ItemBound event. I am having trouble figuring it out. Below is my code: if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { System.Web.UI.WebControls.Image imgDaily = CType(e.Item.Cells[2].Controls[1],System.Web.UI.WebControls.Image); if(e.Item.Cells[2].Equals("1")) imgDaily.ImageUrl = "./Images/yes.jpg"; else …

Member Avatar for dnanetwork
0
547
Member Avatar for sandy2005

Hi I have found the following code for Redirecting the user to loginpage on Session timeout : /////////// Protected WithEvents body As System.Web.UI.HtmlControls.HtmlGenericControl Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load body.Attributes.Add("onLoad", "window.setTimeout(""window.location.href='login.aspx'""," & (Session.Timeout * 60 * 1000) + 5000 & ");") Response.Write("Wait for session …

Member Avatar for mvalid
0
1K
Member Avatar for dru987

Hi I need to render a table with dynamic rows based on data obtained through data reader. Each row has a image link button, a link button and a label to which data comes from the database. In the earlier message you said we can use either a datalist, repeator …

Member Avatar for tgreer
0
331

The End.