Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "avanekar02"

Question

Hi,

Is there a provision for sitemappath in your project.

Thanks Anwar

Question

Hello

I get this following error when i published this site on 3rd party server

err screen shot is attached, please tell me what is the reason, also please tell me how to publish database i did a export from my database to server database all table s and data was transferred but all primary keys and forignkeys was not created.

thanks

Anwar

hello i want to access a 3rd party control pptxgen from our index.js file

i have attached a snapshot of the code running on top you can see the shape.js file and below the unpr error

i have put the 3rd party scripts in the lib folder and put a correct path in the App_start/ScriptsPath as follows

public const string pptxgen = "~/libs/pptxgenjs/pptxgen.js";

Can you please tell me how i can instantiate this in our js page not frontend, i have attached the js file, i have created a folder under lib in the project and put it there.

the code would go as follows

var pptx = new PptxGenJS(); var slide = pptx.addNewSlide();

slide.addText('Hello world!', { x: 1.0, y: 1.0, font_size: 42, color: '00FF00' }); pptx.save('Demo-Simple');

sorry brother i copied the wrong file below is the correct file

@using System.Web.Optimization @using Abp.Timing @using Abp.Web.Mvc.Extensions @using Samit.CmsProTest.Localization @using Samit.CmsProTest.Web.Bundling @{ Layout = null; SetAntiForgeryCookie(); } <!DOCTYPE html>

<html lang="en" dir=@(CultureHelper.IsRtl ? "rtl" : "")>

<head> <meta charset="utf-8" /> <title>CmsProTest</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1.0" name="viewport" /> <meta http-equiv="Content-type" content="text/html; charset=utf-8">

@* Fill these meta tags upon your project specification *@
&lt;meta content=&quot;CmsProTest&quot; name=&quot;description&quot; /&gt;
&lt;meta content=&quot;CmsProTest&quot; name=&quot;keywords&quot;&gt;
&lt;meta content=&quot;CmsProTest&quot; name=&quot;author&quot; /&gt;

&lt;link rel=&quot;shortcut icon&quot; href=&quot;~/favicon.ico&quot; /&gt;

&lt;link href=&quot;~/Content/fonts-open-sans.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;

@Html.IncludeStyle(StylePaths.FontAwesome)
@Html.IncludeStyle(StylePaths.Simple_Line_Icons)
@Html.IncludeStyle(CultureHelper.IsRtl ? StylePaths.BootstrapRTL : StylePaths.Bootstrap)
@Html.IncludeStyle(StylePaths.JQuery_Uniform)
@Html.IncludeStyle(StylePaths.Toastr)
@Html.IncludeStyle(StylePaths.SweetAlert)
@Html.IncludeStyle(StylePaths.FamFamFamFlags)

@Html.IncludeStyle("~/metronic/assets/global/css/components-md" + (CultureHelper.IsRtl ? "-rtl" : "") + ".css")
@Html.IncludeStyle("~/metronic/assets/global/css/plugins-md" + (CultureHelper.IsRtl ? "-rtl" : "") + ".css")
@Html.IncludeStyle("~/metronic/assets/admin/layout/css/layout" + (CultureHelper.IsRtl ? "-rtl" : "") + ".css")
@Html.IncludeStyle("~/metronic/assets/admin/layout/css/themes/default" + (CultureHelper.IsRtl ? "-rtl" : "") + ".css")

@Styles.Render("~/Bundles/Common/css")

@Html.IncludeStyle("~/Views/Account/_Layout" + (CultureHelper.IsRtl ? "-rtl" : "") + ".css")

@RenderSection("Styles", false)

&lt;script type=&quot;text/javascript&quot;&gt;
    @* This is used to get the application's root path from javascript.
    It's useful if you're running application in a virtual directory under IIS. *@
    var abp = abp || {}; abp.appPath = '@ApplicationPath';
&lt;/script&gt;

</head> <body class="page-md login"> <div class="menu-toggler sidebar-toggler"> </div> <div class="logo"> <a href="~/"> <img src="~/Common/Images/app-logo-on-dark.png" alt="" width="149" height="35" /> </a> </div> <div class="content"> @RenderBody() </div> @Html.Action("Languages", "Account") <div class="copyright"> @Clock.Now.Year © CmsProTest. </div>

@Html.IncludeScript(ScriptPaths.Json2)
@Html.IncludeScript(ScriptPaths.JQuery)
@Html.IncludeScript(ScriptPaths.JQuery_Migrate)
@Html.IncludeScript(ScriptPaths.Bootstrap)
@Html.IncludeScript(ScriptPaths.JQuery_BlockUi)
@Html.IncludeScript(ScriptPaths.JQuery_Uniform)
@Html.IncludeScript(ScriptPaths.JQuery_Cookie)
@Html.IncludeScript(ScriptPaths.Toastr)
@Html.IncludeScript(ScriptPaths.SpinJs)
@Html.IncludeScript(ScriptPaths.SpinJs_JQuery)
@Html.IncludeScript(ScriptPaths.SweetAlert)
@Html.IncludeScript(ScriptPaths.Abp)
@Html.IncludeScript(ScriptPaths.Abp_JQuery)
@Html.IncludeScript(ScriptPaths.Abp_BlockUi)
@Html.IncludeScript(ScriptPaths.Abp_SpinJs)
@Html.IncludeScript(ScriptPaths.Abp_Toastr)
@Html.IncludeScript(ScriptPaths.Abp_SweetAlert)

&lt;script type=&quot;text/javascript&quot;&gt;
    abp.localization.defaultSourceName = '@LocalizationSourceName';
&lt;/script&gt;


&lt;script src=&quot;~/AbpScripts/GetScripts?v=@(Clock.Now.Ticks)&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;

@Html.IncludeScript(ScriptPaths.JQuery_Validation)
@Html.IncludeScript(ScriptPaths.JQuery_Validation_Localization)

@Html.IncludeScript("~/metronic/assets/global/scripts/app.js")
&lt;script type=&quot;text/javascript&quot;&gt;
    App.setAssetsPath(abp.appPath + 'metronic/assets/');
&lt;/script&gt;

@Scripts.Render("~/Bundles/Common/js")

@Html.IncludeScript("~/metronic/assets/admin/layout/scripts/layout.js")

@RenderSection("Scripts", false)

&lt;script&gt;
    jQuery(document).ready(function () {
        if (CurrentPage) {
            CurrentPage.init();
        }
    });
&lt;/script&gt;

</body> </html>

Hello please in response to your email below, please find the file attached this is your email request

Hi,

Can you share your _Layout.cshtml under Views/Account folder ? In the mean time you can try to delete files in IIS folder and re-publish your website.

One more thing, you can try to enter this page with a different browser. Current browser might cache javascript files.


Question

when i enter the login page and enter credentials it throws the following error , i have attached the error page

Question

gives me the following error

No connection could be made because the target machine actively refused it 127.0.0.1:3446

regards

Anwar

[attachment=0:2fobwajm]iiserror.jpg[/attachment:2fobwajm]Hello

when i publish this SPA site to local IIS and try to run it gives the following error which i have attached can you please help me here.

Regards Anwar

Question

Hello can i deploy this projects on IIS , please let me know or what is the best mode of hosting this, buy domain windows hosting webspace or a VPN please advise.

Regards Anwar

Showing 101 to 110 of 130 entries