Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

mujin03

@mujin03
About
Posts
7
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Anybody know how to upload video using ASP.NET?
    M mujin03

    I want to upload some multimedia file to my website. Just like Youtube does. However, I searched google and didn't find any samples. It seems like there is a control called CSUpload Controls in .Net 2.0. But not sure whether it can load video file.

    Web Development csharp asp-net tutorial question

  • Anybody know how to upload video using ASP.NET?
    M mujin03

    I want to upload some multimedia file to my website. Just like Youtube does. However, I searched google and didn't find any samples. It seems like there is a control called CSUpload Controls in .Net 2.0. But not sure whether it can load video file.

    C# csharp asp-net tutorial question

  • Anybody know how to upload video using ASP.NET?
    M mujin03

    I want to upload some multimedia file to my website. Just like Youtube does. However, I searched google and didn't find any samples. It seems like there is a control called CSUpload Controls in .Net 2.0. But not sure whether it can load video file.

    ASP.NET csharp asp-net tutorial question

  • how to display image description? [modified]
    M mujin03

    I have a repeater control to display thumbnail pictures. The itemtemplate is made of a web image control. When user clicks on the thumbnail picture, I want it to display a larger image in a web image control and display the image description in a label control( the image description is saved in database). My current code is : I have a getPhoto function which will get the thumbnail pictures through IhttpHandler and bound to the repeater control. Then I have a repPhotoG_ItemDataBound function, here I add the javascript to the image html control and call a javascript to pass the thumbnail imagename as parameter and show the large image. :^) Now, I can get the thubnail picture and display the large images, but I just don’t know how to get and display the image description. Please help!! private void repPhotoG_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e) { //finding repeater item Image System.Web.UI.HtmlControls.HtmlImage img=(System.Web.UI.HtmlControls.HtmlImage)e.Item.FindControl("iPhoto"); //create a relative path for image and add onclick function img.Src=img.Src.Replace('\\', '/'); string Description=""; string Image; Image=IMGpath(img.Src); img.Attributes["onclick"]="showImg('"+Image+"')"; } function showImg(imgName) { imgOn = ("" + imgName); document.imgLarge.filters[0].Apply(); document.imgLarge.src = imgOn; hdr.innerHTML=imgName; document.imgLarge.filters[0].Play(); -- modified at 17:29 Monday 5th June, 2006

    .NET (Core and Framework) javascript html database design help

  • how to display image description? [modified]
    M mujin03

    I have a repeater control to display thumbnail pictures. The itemtemplate is made of a web image control. When user clicks on the thumbnail picture, I want it to display a larger image in a web image control and display the image description in a label( the image description is saved in database). My current code is : I have a getPhoto function which will get the thumbnail pictures through IhttpHandler and bound to the repeater control. Then I have a repPhotoG_ItemDataBound function, here I add the javascript to the image html control and call a javascript to pass the thumbnail imagename as parameter and show the large image. :^) Now, I can get the thubnail picture and display the large images, but I just don’t know how to get and display the image description. Please help!! private void repPhotoG_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e) { //finding repeater item Image System.Web.UI.HtmlControls.HtmlImage img=(System.Web.UI.HtmlControls.HtmlImage)e.Item.FindControl("iPhoto"); //create a relative path for image and add onclick function img.Src=img.Src.Replace('\\', '/'); string Description=""; string Image; Image=IMGpath(img.Src); img.Attributes["onclick"]="showImg('"+Image+"')"; } function showImg(imgName) { imgOn = ("" + imgName); document.imgLarge.filters[0].Apply(); document.imgLarge.src = imgOn; hdr.innerHTML=imgName; document.imgLarge.filters[0].Play(); -- modified at 17:30 Monday 5th June, 2006

    C# javascript html database design help

  • how to display image description? [modified]
    M mujin03

    I have a repeater control to display thumbnail pictures. The itemtemplate is made of web image control. When user clicks on the thumbnail picture, I want it to display a larger image in a web image control and display the image description in a label( the image description is saved in database). My current code is : I have a getPhoto function which will get the thumbnail pictures through IhttpHandler and bound to the repeater control. Then I have a repPhotoG_ItemDataBound function, here I add the javascript to the image html control and call a javascript to pass the thumbnail imagename as parameter and show the large image. :^) Now, I can get the thubnail picture and display the large images, but I just don’t know how to get and display the image description. Please help!! private void repPhotoG_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e) { //finding repeater item Image System.Web.UI.HtmlControls.HtmlImage img=(System.Web.UI.HtmlControls.HtmlImage)e.Item.FindControl("iPhoto"); //create a relative path for image and add onclick function img.Src=img.Src.Replace('\\', '/'); string Description=""; string Image; Image=IMGpath(img.Src); img.Attributes["onclick"]="showImg('"+Image+"')"; } function showImg(imgName) { imgOn = ("" + imgName); document.imgLarge.filters[0].Apply(); document.imgLarge.src = imgOn; hdr.innerHTML=imgName; document.imgLarge.filters[0].Play(); -- modified at 17:29 Monday 5th June, 2006

    Web Development javascript html database design help

  • How to display Image Description?
    M mujin03

    :(I have a repeater control to display thumbnail pictures. The itemtemplate is made of html image control. When user clicks on the thumbnail picture, I want it to display a larger image and display the image description in a label( the image description is saved in database). The large image is also a html control. My current code is : I have a getPhoto function which will get the thumbnail pictures through IhttpHandler and bound to the repeater control. Then I have a repPhotoG_ItemDataBound function, here I add the javascript to the image html control and call a javascript to pass the thumbnail imagename as parameter and show the large image. All this works fine, but I just don’t know how to get and display the image description. Please help!! private void repPhotoG_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e) { //finding repeater item Image System.Web.UI.HtmlControls.HtmlImage img=(System.Web.UI.HtmlControls.HtmlImage)e.Item.FindControl("iPhoto"); //create a relative path for image and add onclick function img.Src=img.Src.Replace('\\', '/'); string Description=""; string Image; Image=IMGpath(img.Src); img.Attributes["onclick"]="showImg('"+Image+"')"; } function showImg(imgName,Description) { imgOn = ("" + imgName); document.imgLarge.filters[0].Apply(); document.imgLarge.src = imgOn; hdr.innerHTML=imgName; document.imgLarge.filters[0].Play(); Jin

    ASP.NET javascript html database design help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups