Web Forms :: How To View A PowerPoint Presentation On .NET Page
Aug 26, 2010How can i view a PowerPoint Presentation on ASP.NET Page. If my PPT file is in the "PPTFILES" folder on my website root.
View 1 RepliesHow can i view a PowerPoint Presentation on ASP.NET Page. If my PPT file is in the "PPTFILES" folder on my website root.
View 1 RepliesI have a ASPX Page. where I have a link view, which when I click on it it should open a power point presentation in the different window.which is already save in db
View 1 RepliesHow to upload Power Point Presentation in sql server using asp application and
also how to show the PPT to user
Is it possible to generate powerpoint presentation in asp.net using the database values?
View 2 RepliesI am displaying images on grid view control and I want to export these images on power point (.ppt) file how can I do this?
View 1 RepliesI need to develop in ASP.NET or in SilverLight a web-based editor and a web-based player for PowerPoint presentation. Are there any components I can use to do this?
View 2 RepliesI have a solution which has the following structure:
Solution
-Business Entity(project)
-Business Rules(project)
-DataAccess(project)
-Presentation(project)
-ClientBin
-Images
-Login(contains aspx pages, mastpage)
etc
Everything works absolutly fine in dev, but when I move the solution to IIS 7, I get this error! CompanyWeb is the masterpage, which is located in the login directory. Here is the page directive for login.aspx, which is the offending page
<%
@
Page
Title=""
Language="vb"
AutoEventWireup="false"
MasterPageFile="CompanyWeb.master"
CodeBehind="login.aspx.vb"
Inherits="Presentation.login" %>....................
I get the data of the stored image on database as byte[] array;then I convert it to System.Drawing.Image like the code shown below;
public System.Drawing.Image CreateImage(byte[] bytes)
{
System.IO.MemoryStream memoryStream = new System.IO.MemoryStream(bytes);
[code]...
I want to include some pie charts present in my power point file. Can any one tell me how to do that? or atleast help in creating pie charts on my web page.
View 1 RepliesI'm looking at a site with horizontal menu and sub-items for each item. When an item is clicked, a second horizonal menu is presented under the first, with all the sub menu items for that particular main item. I can do this with the asp.net menu? Almost seems like it would require a second menu control under the first.
View 3 RepliesI have multiple nested GridView controls where I have one field/column that always have one of three values only (0, 1, and 2) and this is editable field. Now, instead of putting this field as a DropDownList for the end-user to choose either one of these values (0, 1, or 2), I am representing each value with a specific clickable image, so the user can click the image to switch among the mentioned field states (0, 1, or 2).
I managed to do this with ImageButton and AJAX. However, the volume of this field is too high, the page is quite big, and the end-user needs to do change the state/value of this field most frequently, which causing a flicking issue in the page and slowness (because the code is done by AJAX, so in the server side) where the customer is not accepting it.
how we can rectify this issue; for example using javascript coding (but I need to get the selected value from code-behind)? I found the AJAX Toolkit ToggleButtonExtender which is very good and not causing the flicking/slowness issue, but unfortunately, this ToggleButton has only two states while I need three states option.
how to export ASP.net chartcontrol to Excel and ppt,
For exporting excel i tried different ways...
Below is my codeits not working
protected void Button2_Click(object sender, EventArgs e)
{
Response.Clear();
[Code].....
I found a good website to show presentation with video and slides at the same time. The video is nicely synchronized with the slides. I would like to know whether it can be done in ASP.NET web form. If yes, how to do it? What is the logic to implement this feature?
View 3 RepliesHow to open word/Excel/Power Point documents in edit mode in any browser using asp .net.
View 1 RepliesWhat is the best way to unit test the presentation layer of a web forms application? I have been told that there are frameworks available like Watin. Are there better tools around?
View 1 RepliesI have a date base with a table named 'movies'. I want to take information on my database. I use a SQLDataSource. For my presentation, I use a repeater. Here is my code :
[Code]....
But if for exemple, 'champ1' is empty in my database, i don't want to print it in the result of my query ! But i can't arrive ...
Below is the page and file is in local drive.
<asp:GridView runat="server" ID="gvDetails" AutoGenerateColumns="false">
<Columns>
<asp:BoundField DataField="Id" HeaderText="Id" />
[Code].....
Actually what i am doing in my Data Access Layer dragging store procedure to TestDbml to display records and creating data context instance in BAL to retrieve records and my method in BAL is like this
public IEnumerable display()
{
using (TestDataContext db = new TestDataContext())
{
var display = obj.USP_Actor_View_Speciality(p_UserName, 1);
return display as IEnumerable;
}
Now the problem is that how can i iterate or fetch over the records and display accordingly in my Presentation Layer so that i could return all the field parameteres Like ield1=val.field1,field2=val.field2.
I'm a junior programmer, i do not get the concept of MVC! My method of coding is seperating my application design into 3 layers:
Presentation Layer
Business Layer
Data Access Layer
I find it very practical to a junior developer or at least to me, so i do not really get the point of MVC since i believe MVC just tries to separate logic from UI. Right?
I decided to have this book to help me have a better idea on code design:
http://www.amazon.com/Professional-ASP-NET-Design-Patterns-Millett/dp/0470292784/ref=sr_1_1?ie=UTF8&qid=1292836936&sr=8-1
Note: i also decided to start learning about TDD.
QUESTION:
Is breaking my code design into 3 layers (presentation, dal and business) meets MVC concept?
I am making an asp.net web application..(Asp.net website)
I wants to give the facility to the user to use powerpoint and excel in my own application..
Means I wants to make powerpoint and excel in my application in asp.net web application..
how it will be possible....
I'm working on a project that I'm trying to export data from textboxes in asp.net website project to a powerpoint file. I writing ofcourse in C#.The whole concept is to use the data the a user inserts to the text boxes and they are sent after clicking a OK button directly to a powerpoint file. I'm using OFFICE 2007 so I'm using powerpoint 2007 for this.A similar concept that I'm already using in the website project is doing the same thing but exporting to a WORD format file. I bumped against this following site a software to perform this and it's called: SoftArtisans. There website is http://www.softartisans.com/ .
Now, if somebody has a clue or a tutorial how I can do this, Export to a powerpoint file I'll be very thankful. I am also using Microsoft SQL Server 2008 R2 to save the data in the database, so if maybe someone knows how to export the data from the textboxes from the website TO the database and then TO the powerpoint file
I want to convert powerpoint into images when a user uploads it to my server. What is the best way of doing it?
I was using interop, but it seems to be working only on client side.
I'm having troubles remembering how to grab the list view's state, or page, so that when you leave the list, you can return to the list view page you left on. I have a data pager, and I have hyplerlinks for items in the list view that take you to a file upload or file delete page, and then returns to the list view. It returns to the list view's initial state (first page).
View 1 RepliesWe have an ASP.net site where we need to generate PowerPoint slides of the data. The slides will need to include charts and tables. I have come across Aspose.Slides online which seems a good option. What are your experiences with Aspose.Slides? Are there any other options we can pursue?
View 3 RepliesI need idea of new implementation. I have a client application which will interact with my application. My application needs to count how many slides are available in the powerpoint presentation file and it needs to provide it to the end user. And also user can ask this application to provide only first two slides or 3 and 4th slides to retrieve from the PPT file. How do I approach this. If any one has answer and source code please provide it.
View 4 Replies