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
J

jknascrimz

@jknascrimz
About
Posts
16
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to include an existing infopath form in a view of another infopath form 2007
    J jknascrimz

    hi, I need to include an existing infopath form in a View of another infopath form. Technology Environment: Microsoft Infopath 2007 Kindly help me in getting this done. Thanks in advance. Regards, Jayakrishna

    SharePoint help tutorial workspace

  • error in displaying the menu in Opera browser
    J jknascrimz

    hi, am using menu.js to build a menu in an aspx page and am also using prototype.js in the same page and i well know that the use of prototype.js before that menu leads to display the menu in a wrong way in Opera browser where as it work well with IE & Firefox browsers. i need to resolve this with Opera browser inorder to display the menu in a right way as it is shown in other browsers. Ref Url: http://www.itifsl.cmlinks.co.in/Insurance/Index.aspx. Kindly help me in getting this problem solved. Thanks in advance. Regards, Jayakrishna

    ASP.NET help javascript database

  • open a new window with the specified url on clicking a image in slide show extender ajax control
    J jknascrimz

    Whether this kind of process can be achieved through Javascript...? Kindly reply me & thanks in advance..

    ASP.NET csharp asp-net database help

  • open a new window with the specified url on clicking a image in slide show extender ajax control
    J jknascrimz

    I browsed all the sections & what i found is only the image name & some caption messages can be given around that slide show control. The open of a new window by clicking an image in the slide show is not available in any other site. Kindly help me getting out this. Thanks in advance.

    ASP.NET csharp asp-net database help

  • open a new window with the specified url on clicking a image in slide show extender ajax control
    J jknascrimz

    I have a slide show extender Ajax control & the images in that are fetched from the database. The slide show extender allows only to bind the image name & some caption related to that(fetched from database). And my need is when i click a image in that slide show it should open a new window with the corresponding URL which is also to be fetched from database. I have created this Ajax control in Asp.net with C#. Kindly help me in making this possible. Thanks in advance.

    ASP.NET csharp asp-net database help

  • Retrieving the value in the embed html
    J jknascrimz

    Thank You, I have rated this reponse to the most. thanks one again..

    ASP.NET csharp html asp-net database visual-studio

  • Retrieving the value in the embed html
    J jknascrimz

    Thanks for ur kind reply, I need the solution in the 1st way i.e Using RegularExpression coz am working with C# + asp.net. In the regex, it is possible to find the keyword value or src but what i need is url that follows these value or src. I tried for it but failed to proceed further in getting that specified Url.

    ASP.NET csharp html asp-net database visual-studio

  • Retrieving the value in the embed html
    J jknascrimz

    Thanks For ur Information & I already Googled but not yet derived any suitable solution.

    ASP.NET csharp html asp-net database visual-studio

  • Retrieving the value in the embed html
    J jknascrimz

    hi, Iam working with asp.net with c# in VS.Net 2008. And in a task of mine I am fetching a data from the DB which contains a embed html for eg: " <object width="230" height="155"> <param name="movie" value="http://www.youtube.com/v/Ab9kmqBmhXc&hl=en&fs=1&"></param> <param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param> <embed src="http://www.youtube.com/v/Ab9kmqBmhXc&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="230" height="155"></embed></object>" In this fetched data i need to get only the value="http://www.youtube.com/v/Ab9kmqBmhXc&hl=en&fs=1&" or src="http://www.youtube.com/v/Ab9kmqBmhXc&hl=en&fs=1&" I need only the value or src(i.e) the url Bcoz i need to use that Url for some other purposes also. Kindly help me in getting the value. Thanks in advance.

    ASP.NET csharp html asp-net database visual-studio

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    Sorry for my disturbance I will not repeat this mistake... & thanks for ur co-operation...

    ASP.NET csharp html asp-net database visual-studio

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    [Message Deleted]

    ASP.NET csharp html asp-net database visual-studio

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    Hi, I am working with VS.Net 2008 application & am in need to provide some link (for ex: http:www.google.com)to the Images that are shown in the slideshowextender ajax control in asp.net with c#. On the click of the every single image a new window with the corresponding URL(retrieved from the DB) should get open. Kindly help me in getting through this. Waiting for your response. Thank You. I have pasted the html source code & code behind use , Pls help me... Design page This Design page is an user control & iam accessing the GetImage Method from its Parent page, in which i wrote the Code (pasted below) <asp:Image ID="image1" runat="server" Height="150px" Width="230px" /> <br /> <cc1:SlideShowExtender ID="SlideShowExtender1" runat="server" AutoPlay="true" Loop="true" SlideShowServiceMethod="GetImage" TargetControlID="image1"> </cc1:SlideShowExtender> Code behind page [System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public static AjaxControlToolkit.Slide[] GetImage() { string promophotos, promoimages; SqlDataSource ds = new SqlDataSource(); ds.ConnectionString = ConnectionString.Str_SqlCon_CmInfoline.ToString(); string mySelect; int count = 0; mySelect = "select Tooltip,BschoolName,Imageurl,UrlPath from Tbl_InfolinePromoPhotos"; ds.SelectCommand = mySelect; System.Data.DataView dv = (System.Data.DataView)ds.Select(new DataSourceSelectArguments()); count = dv.Table.Rows.Count; AjaxControlToolkit.Slide[] slides = new AjaxControlToolkit.Slide[count]; try { for (int i = 0; i < count; i++) { promophotos = dv.Table.Rows[i]["Imageurl"].ToString(); string[] photopath = promophotos.Split(','); promoimages = photopath[1]; slides[i] = new AjaxControlToolkit.Slide(Global.contentUrl + "/Admin/Bschool/PromoPhotos/" + promoimages.TrimStart('.'), dv.Table.Rows[i]["Tooltip"].ToString(), dv.Table.Rows[i]["UrlPath"].ToString()); } } catch { } return (slides); }

    ASP.NET csharp html asp-net database visual-studio

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    As per the suggestion i have pasted the required things, Pls help me... Design page This Design page is an user control & iam accessing the GetImage Method from its Parent page, in which i wrote the Code (pasted below) <asp:Image ID="image1" runat="server" Height="150px" Width="230px" /> <br /> <cc1:SlideShowExtender ID="SlideShowExtender1" runat="server" AutoPlay="true" Loop="true" SlideShowServiceMethod="GetImage" TargetControlID="image1"> </cc1:SlideShowExtender> Code behind page [System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public static AjaxControlToolkit.Slide[] GetImage() { string promophotos, promoimages; SqlDataSource ds = new SqlDataSource(); ds.ConnectionString = ConnectionString.Str_SqlCon_CmInfoline.ToString(); string mySelect; int count = 0; mySelect = "select Tooltip,BschoolName,Imageurl,UrlPath from Tbl_InfolinePromoPhotos"; ds.SelectCommand = mySelect; System.Data.DataView dv = (System.Data.DataView)ds.Select(new DataSourceSelectArguments()); count = dv.Table.Rows.Count; AjaxControlToolkit.Slide[] slides = new AjaxControlToolkit.Slide[count]; try { for (int i = 0; i < count; i++) { promophotos = dv.Table.Rows[i]["Imageurl"].ToString(); string[] photopath = promophotos.Split(','); promoimages = photopath[1]; slides[i] = new AjaxControlToolkit.Slide(Global.contentUrl + "/Admin/Bschool/PromoPhotos/" + promoimages.TrimStart('.'), dv.Table.Rows[i]["Tooltip"].ToString(), dv.Table.Rows[i]["UrlPath"].ToString()); } } catch { } return (slides); }

    ASP.NET csharp asp-net database visual-studio com

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    Hi, Thank u for your earliest reply. But the solution in that link, provided as a reply is not applicable b'coz in that, the href is given to the image name field & not in the description field and i have tried with both the field & have not got the expected results. Kindly help me in the making this task as possible. Thank You.

    ASP.NET csharp asp-net database visual-studio com

  • Providing link to the images that are shown in Slideshowextender control
    J jknascrimz

    Hi, I am working with VS.Net 2008 application & am in need to provide some link (for ex: http:www.google.com)to the Images that are shown in the slideshowextender ajax control in asp.net with c#. On the click of the every single image a new window with the corresponding URL(retrieved from the DB) should get open. Kindly help me in getting through this. Waiting for your response. Thank You.

    ASP.NET csharp asp-net database visual-studio com

  • Add & Remove Textbox dynamically
    J jknascrimz

    1. I have one Text box (say first) and add button. 2. If i click add, one text box should be added + one delete button. 3. if i click add again, second text box should be added + one delete button and so on.. 4. on clicking any delete button, the corresponding text box should get deleted 5. i also need to get the values of textboxes to be stored in the DB under one column name. Kindly help me in getting this task solved using Asp.net, C# and Javascript.

    ASP.NET csharp javascript asp-net database 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