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
jknascrimz
Posts
-
How to include an existing infopath form in a view of another infopath form 2007 -
error in displaying the menu in Opera browserhi, 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
-
open a new window with the specified url on clicking a image in slide show extender ajax controlWhether this kind of process can be achieved through Javascript...? Kindly reply me & thanks in advance..
-
open a new window with the specified url on clicking a image in slide show extender ajax controlI 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.
-
open a new window with the specified url on clicking a image in slide show extender ajax controlI 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.
-
Retrieving the value in the embed htmlThank You, I have rated this reponse to the most. thanks one again..
-
Retrieving the value in the embed htmlThanks 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.
-
Retrieving the value in the embed htmlThanks For ur Information & I already Googled but not yet derived any suitable solution.
-
Retrieving the value in the embed htmlhi, 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.
-
Providing link to the images that are shown in Slideshowextender controlSorry for my disturbance I will not repeat this mistake... & thanks for ur co-operation...
-
Providing link to the images that are shown in Slideshowextender control[Message Deleted]
-
Providing link to the images that are shown in Slideshowextender controlHi, 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); }
-
Providing link to the images that are shown in Slideshowextender controlAs 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); }
-
Providing link to the images that are shown in Slideshowextender controlHi, 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.
-
Providing link to the images that are shown in Slideshowextender controlHi, 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.
-
Add & Remove Textbox dynamically1. 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.