Click here to Skip to main content
15,886,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: add columns in gridview at runtime Pin
anilaabc9-Nov-09 21:17
anilaabc9-Nov-09 21:17 
AnswerRe: add columns in gridview at runtime Pin
Gamzun9-Nov-09 22:36
Gamzun9-Nov-09 22:36 
GeneralRe: add columns in gridview at runtime Pin
anilaabc9-Nov-09 23:24
anilaabc9-Nov-09 23:24 
GeneralRe: add columns in gridview at runtime Pin
Gamzun9-Nov-09 23:55
Gamzun9-Nov-09 23:55 
GeneralRe: add columns in gridview at runtime Pin
anilaabc9-Nov-09 23:59
anilaabc9-Nov-09 23:59 
GeneralRe: add columns in gridview at runtime Pin
anilaabc10-Nov-09 0:46
anilaabc10-Nov-09 0:46 
GeneralRe: add columns in gridview at runtime Pin
Gamzun10-Nov-09 2:00
Gamzun10-Nov-09 2:00 
GeneralRe: add columns in gridview at runtime Pin
anilaabc10-Nov-09 18:17
anilaabc10-Nov-09 18:17 
QuestionHow to Create Scorm Course in asp.net Pin
Member 44660599-Nov-09 20:43
Member 44660599-Nov-09 20:43 
AnswerRe: How to Create Scorm Course in asp.net Pin
Christian Graus9-Nov-09 21:08
protectorChristian Graus9-Nov-09 21:08 
AnswerRe: How to Create Scorm Course in asp.net Pin
padmanabhan N9-Nov-09 22:12
padmanabhan N9-Nov-09 22:12 
QuestionCreating Scorm Course in asp.net Pin
Member 44660599-Nov-09 20:40
Member 44660599-Nov-09 20:40 
AnswerRe: Creating Scorm Course in asp.net Pin
Christian Graus9-Nov-09 21:09
protectorChristian Graus9-Nov-09 21:09 
AnswerRe: Creating Scorm Course in asp.net Pin
netJP12L16-Nov-09 10:57
netJP12L16-Nov-09 10:57 
QuestionIn ASP.Net, how to resize iFRAME at runtime? Pin
hifiger20049-Nov-09 20:19
hifiger20049-Nov-09 20:19 
AnswerRe: In ASP.Net, how to resize iFRAME at runtime? Pin
Nishant Singh9-Nov-09 20:37
Nishant Singh9-Nov-09 20:37 
QuestionDatalist Image Pin
KhandelwalA9-Nov-09 19:53
KhandelwalA9-Nov-09 19:53 
I m showing Product image, description, specification in datalist through database........this is asp code.......



<asp:datalist id="DataList1" runat="server" width="80%" cssclass="Datalist">
<itemstyle backcolor="White">
<itemtemplate>

<asp:imagebutton id="ImageButton2" runat="server" height="230px"
="" width="230px" imageurl="<%#Container.DataItem("Picture") %>">
<asp:label id="lblHeading" runat="server" cssclass="ProductHead"
="" text="< %#Container.DataItem("Name") %>">


<asp:label id="lblDesc" runat="server" cssclass="ProductDesc"
="" text="<%#Container.DataItem("Description") %>">


<asp:label id="lblProductDetails" runat="server" cssclass="ProductDetails"
="" font-underline="True" text="Product Details">


<asp:label id="lblItem" runat="server" font-bold="True" font-names="Verdana"
="" font-size="Small" forecolor="Gray" text="Item #">
<asp:label id="lblIt" runat="server" cssclass="ProductPD"
="" text="<%#Container.DataItem("ItemNo") %>">




<asp:label id="lblTI" runat="server" cssclass="ProductDetails"
="" font-underline="True" text="Tanzanite Info">


<asp:label id="lblQuality" runat="server" font-bold="True" font-names="Verdana"
="" font-size="Small" forecolor="Gray" text="Quality:">
<asp:label id="lblQ" runat="server" cssclass="ProductPD"
="" text="<%#Container.DataItem("Quality") %>">


<asp:label id="lblDimensions" runat="server" font-bold="True"
="" font-names="Verdana" font-size="Small" forecolor="Gray" text="(LengthxWidthxHeight):">
<asp:label id="lblW" runat="server" cssclass="ProductPD"
="" text="<%#Container.DataItem("length") %>">
<asp:label id="X1" runat="server" cssclass="ProductPD" text="x">
<asp:label id="lblH" runat="server" cssclass="ProductPD"
="" text="<%#Container.DataItem("width") %>">
<asp:label id="X2" runat="server" cssclass="ProductPD" text="x">
<asp:label id="lblD" runat="server" cssclass="ProductPD"
="" text="<%#Container.DataItem("height") %>">




<asp:label id="lblPrice" runat="server" font-names="Verdana" font-size="Medium"
="" forecolor="Gray" text="PRICE:">
<asp:label id="Label13" runat="server" cssclass="ProductPrice" text="$">

<asp:label id="lblPr" runat="server" cssclass="ProductPrice"
="" text="<%#Container.DataItem("Price") %>">




<asp:button id="btnAddToBasket" runat="server" backcolor="#2165B0"
="" bordercolor="Black" borderstyle="Double" borderwidth="1px" font-names="Verdana" forecolor="White" text="ADD TO BASKET" commandname="atb">




<asp:imagebutton id="ibWishlist" runat="server"
="" imageurl="~/Images/wishlist.gif">
<asp:linkbutton id="lbAddtoWishlist" runat="server" font-names="Verdana"
="" font-size="X-Small" forecolor="#4B7BB0">Add to Wishlist







This is page behind code........

Dim id As Integer = Request.QueryString("id")
      Dim cmd As String = "Select * from Products where StoneID=" & id & ""
      Dim rdr As IDataReader = db.ExecuteReader(CommandType.Text, cmd)
      DataList1.DataSource = rdr
      DataList1.DataBind()




Now wht i want is whnvr user took mouse over on image..........a button of Enlarge will show.............and on click the image got enlarge...........and background become change in black color.........how to do in datalist................plz guide me a bit.........Smile | :)
AnswerRe: Datalist Image Pin
Nishant Singh9-Nov-09 20:14
Nishant Singh9-Nov-09 20:14 
QuestionHow to Edit a gridview ,Please correct the code which i gave here. Pin
rinku soni 239-Nov-09 19:19
rinku soni 239-Nov-09 19:19 
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Christian Graus9-Nov-09 19:36
protectorChristian Graus9-Nov-09 19:36 
GeneralRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Arnalyn19-Feb-10 0:37
Arnalyn19-Feb-10 0:37 
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Nishant Singh9-Nov-09 20:06
Nishant Singh9-Nov-09 20:06 
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Raja Soosai10-Nov-09 2:20
Raja Soosai10-Nov-09 2:20 
Questionhow to display data in grid without sending the data in the database Pin
Flavia A9-Nov-09 18:57
Flavia A9-Nov-09 18:57 
AnswerRe: how to display data in grid without sending the data in the database Pin
Christian Graus9-Nov-09 19:02
protectorChristian Graus9-Nov-09 19:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.