How do I modify Adxstudio online's aspx file?
For example, Case Page Template is linked to an aspx file at ~/Areas/HelpDesk/Pages/Case.aspx. How do I modify that Case.aspx file? I've looked around in both CRM and Adxstudio portal site but still cannot find any aspx file.
I'm using Adxstudio online trial, version 7 and CRM Online 2016.
If you are working in an online trial of Adxstudio I suspect you won't have access to the server side code files.
If you want to edit the server side code you should download the SDK, that has all the aspx files in. You can then self host the portal, whilst having full access to the aspx files in something like Visual Studio.
Is this Adxstudio Cloud Service?
https://www.adxstudio.com/adxstudio-portals/features/cloud-hosted-saas/
If so, the answer is you cannot. For the cloud offering, you get what they give you out of the box.
If you are using the on-premise or 'standard' version - you download the SDK which contains a sample/starter project. Open that, configure the connection string and then you can edit the ASPXs (Page Templates) in the Pages folder.
Related
I have an outlook addin that I currently deploy by telling the users to browse with windows explorer to a specific file on a share.
I would like to change that such that I would tell the users to browse to a specific internal website using edge/chrome. Then click on a link to install the addin.
I want to change from file system to browser based so I can deploy it much like any other website we have. I have add good instructions on the webpage with the link and any number of other advantages.
The file system supports automatic updating as we update the addin and I would want the browser based install to support the same thing.
The best what you can do is to publish a manifest URL so users could add it instead if file path on the shared place (of course, if the add-in is not published in the AppStore). You can find all possible ways of deploying Office web add-ins described in the Deploy and publish Office Add-ins article.
I'm newly developing office Add-Ins. I was able to create an Excel add-in using visual studio 2019 with Office / SharePoint development workload (JavaScrip APIs). It was possible to test on my own excel desktop when I press the start button in Visual studio, but I need a test on another computer. I'm planning to publicize this app on AppSource and OfficeStore.
Checking Microsoft's documentation and some other questions here at Stackoverflow I understood that the recommended way to test is: SideLoad.
Microsoft's Documentation about testing and debugging office
add-ins
Test office Add-ins - StackOverflow
Overall Testing Story for Office Add-ins
On the other hand, when I started on my desktop the WebApp(task pane) was host in the IIS server as localhost. So, I created a shared folder and put the manifest archive that was available in my machine on the path: Office add-in\ExcelWebAddIn1\bin\Release\OfficeAppManifests. Besides that, accessing another computer I set the trust manually and it works. On the other hand, when I accessed the excel> insert>add-in>myadd-ins> down arrow is not possible to keep going with Microsoft's documentation, and the add-in is not there!
If I try file>options>add-ins is not there too!
Sideload Office Add-ins for testing from a network share
Is it necessary to host the web app on a real server or Azure before following these steps? or Is it necessary to publish the solution? Besides that how can I include the manifest in excel?
To test an add-in on a machine that is not the machine where the add-in's web app is running, you cannot use "localhost" in the manifest. The manifest must point to the HTTPS URL of the web app.
I have done the following:
installed and used Node.js
edited taskpane files etc on node server
in a browser, visited localhost:3000/taskpane.html and other files, and copied source generated
on a webserver, placed these generated files, and copied links to these files (only one html and one js needed)
repalced links in manifest.xml to html file, and in .html file to .js file
re-upload manifest.xml to reflect changes
It works, with some errors being thrown in the console output.
It does mean that you need to repeat the steps above each time, except for the upload of the manifest.xml.
I made a website with visual studio 2013 (MVC 5). I published my VS project to a local directory and uploaded all like this:
http://i.stack.imgur.com/kUfyN.png
but in the website preview an error occurs
can someone help me please?
What Interface does your server run? If its Apache you need to Download an Extension for your Webserver. If you want to run asax on a webpage. If not use a language like html and css to show your website
This may be a basic question, but I've searched for a little while and couldn't find anything specific to this.
I bought a domain and created the web app in Azure for hosting, and set up the DNS so that it's linked to the Azure Web App. Using Visual Studio 15, I opened the website via the FTP connection settings found in Azure, and was able to create files, edit the html, css, etc. Going forward, I wanted to use Web Deploy with Visual Studio to push new builds of the code up to the web site. I downloaded the publish profile from Azure, and imported it into a new visual studio project. I also copied all the previous files over(it wasn't alot). I got the correct Web Deploy settings and successfully published the solution to the Web App in Azure. However, it never updates the code with my new changes. When I look at the site in Firebug it still has the same files/code that it had when I edited it via FTP.
Any idea what I'm doing wrong?
I followed your steps and everything published perfectly for me. Did you try to simply refresh the file list to make sure Visual Studio is seeing all your files? Are they included in your project?
Also, when you go to publish, on the 4th step labeled preview, try to hit "start preview" and see if it detects any changes.
Also, could you tell me a bit more about your project? Is it a website project folder, mvc solution, etc?
You could try to clean the website to make sure your new files are getting deployed.
Clean Windows Azure Website
I created a site in Sharepoint 2010 and exported it using "Save as template". That created a .wsp which I imported into Visual Studio 2010 and created a solution. That solution contains a web template (which is just an onet.xml file) among all the site pages and assets. So far, so good.
Now, I developed some web parts and added them to the project. Then I compiled and packaged everything, created a site in Sharepoint by selecting "Select template later", uploaded the .wsp into the site, and activated it. At that point all the webparts are created, and also the web template. So I go to the home page, and create the site with that template. But when the site is create from the template, all the web parts are deleted and replaced by Sharepoint basic web parts (Content editor, page viewer, ...).
Is there a way to include the web parts in the web template? I'm sure it's possible editing the onet.xml, but I'm not sure how.
Thanks in advance
Have you tried manually setting up your web part page after the deployment? Then you can export the site as a template and then look at the resulting onet.xml file. That should give you some clues about the changes you need to make.