Run Ofc.exe On The Server From Web Page?

Oct 25, 2010

I'm trying to write a code which will converts doc files to docx. As far as I know, I can use ofc.exe for this purposes, but I can't run it from an aspx page. I'm impersonating the user who has unrestricted rights (user is in a group of the local administrators), but the file is not converted. The strange thing is, that no error or output is generated. Where can be the problem? If you have a better way to convert doc to docx The code I use to run the ofc.exe is the following:

[Code]....

After that the eventlog has entry: "OFC.exe output:", so the process has existed...

View 5 Replies


Similar Messages:

C# - Receive Error 'Unknown Server Tag' With Page.ParseControl On A Custom Server Control

Aug 4, 2010

I'm building a dynamic form using XML and XSLT. Anyway I'm using a custom asp.net control for CKEditor, it's an HTML editor.

When I try to add the controls from the XSLT using Page.ParseControl(<the-string-from-the-xslt-here>), I get a warning saying:

Unknown server tag 'FCKeditor.CKEditor'

And of course, if I remove the control from the XSLT everything is working fine and all the regular asp.net controls like TextBox etc get rendered to the string just fine. Does anyone know what I can do about it?

View 2 Replies

AJAX :: Calling Server From Javascript And Have Access To Page Server Controls?

Nov 4, 2010

I need to make an ajax call from my javascript and access a control on my page. Using a webmethod wont work then since it's static, do I have any other options?

View 3 Replies

Server.TransferRequest Returns Blank Page On Specific Server?

Jun 17, 2010

I have a webapplication based on MonoRail, where we utilize the routing feature from MonoRail. On the first request after the application has started, the routing isn't initialized. To circumvent this, I have the following code in Application_OnError():

public virtual void Application_OnError()
{
if ( // identified as routing error )
Server.TransferRequest( Context.Request.RawUrl, false );
return;
}

Problem beeing that on our development server (which runs server 2008 R2, with IIS 7.5 and .NET 3.5) returns a blank page without headers, but on my workstation (which runs win7, IIS 7.5 and .NET 3.5) it works fine.

What could be the cause of this? If the code in Application_OnError() throws an exception, what would be the expected output?

I have verified the following:

The access-log shows one entry, I'm not sure if a TransferRequest would show up as a second entry when invoked successfullyThe application actually do some work according to my internal logs, and it doesn't die since a subsequent requests works flawlessly (because routing will be active)

View 4 Replies

Web Forms :: Call Server Side Function Of Parent Page From Popup Page?

Mar 24, 2011

I open a pop up page(child page) by using jquery(jquery.colorbox.js) in asp.net application. now when I click on search button I want to close the pop up page(child page) and refresh the UpdatePanel1 by using search parameters. for above I need to execute server side function in parent page. code to close pop up:

child.aspx:
<script>
function closePopup() {
[Code]....

View 3 Replies

Possible To Call A Server-side Event On A Parent Page When A Child Page Closes

Jan 13, 2010

I have a parent page with two data controls. I want to be able to open a child window, do something on it, and when it closes I want to rebind only one of the two data controls on the parent page. I have the control I want to update within an UpdatePanel so would like to call rebind it and call UpdatePanel.Update().

View 2 Replies

Configuration :: Making The Home Page As Default Page When Typing The Name Of The Server In The URL?

Sep 6, 2010

I have a Asp.Net application eg its name is ABC and I have a server eg whose name is XYZ, where the application is hosted from. The default page for the application is Home.aspx.Now the requirement is I want Home.aspx to open automatically when the server name is typed in the URL. Currently for accessing the Home page I writehttp://XYX/ABC/Home.aspx but I want Home.aspx to open if I writettp://XYZCan anyone suggest how I can achieve this. I have one solution that is making a HTML page as default in IIS and then redirecting it to the respective link.

View 5 Replies

Best Way To Initiate The Page Caching On The Server Side And Serve The Cached Page Upon?

Apr 19, 2010

I'm implementing Outputcache in my application and it works fine, but the first time always take a lot to load and the next following request will be faster...

I would like to know if there is a way to initiate the page caching on the server side and serve the cached page upon the very first request, rather than have it triggered by the user one first time.

View 1 Replies

How To Transfer Data From A Page In One Server To Another Server

Mar 20, 2011

i have two servers s1 and s2

In s1 we hav an aspx page called test1.aspx

In s2 we hav an aspx page called test2.aspx

In test1.aspx i have a textbox and a button. I enter data in textbox and click the biutton.

Now the data that has been entered should be shown in a label in test2.aspx

test1.aspx and test2.aspx are in two servers...so how to do it ...

View 3 Replies

How To Make A Web Page As A Default Page For The Server Name

Sep 2, 2010

Suppose I have a server wid some virtual name as ABC. And also I have a .Net web application XYZ with some .aspx pages like Home.aspx etc. Now if I want to make Home.aspx page as the default page when I type the server name in brower the Home.aspx opens automatically.

Currently Iam accessing the application with this URL
https://ABC/XYZ/Home.aspx
But I want to access the application in this way:
http://ABC

View 6 Replies

The Design Of The Page Is (layout Of The Page) Not As In The First Server?

May 31, 2010

i developed a web application and it is working fine in local server. when i place the web application (copy paste the file of asp.net) in another local system it is working fine but the design of the page is (layout of the page) not as in the first server what could be the problem

View 1 Replies

Custom Server Controls :: How To Use A Custom Server Control That Is Defined In Inline Code In The Same Page

Oct 22, 2010

I have to use inline code for an aspx page and I need to use a custom server control that is defined in the same aspx page but the control does not get processed as a server control. it gets returned as is as static html tag.

View 3 Replies

Forms Data Controls :: Add An Update Command To Page And Run The Page Getting Error Message - Server Error In '/MYApplication?

Feb 22, 2010

When I add an update command to my page and run the page I get this error message

Server Error in '/MYApplication.

Incorrect syntax near '-'.Must declare the scalar variable "@recnum".

Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near '-'.Must declare the scalar variable "@recnum".

Source Error:

[Code]....

Stack Trace: [Code]....

Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082

Here is my code

<asp:SqlDataSource
ID="SqlDataSource1"
runat="server"[code]....

View 4 Replies

Using Ajax Script To Load Content From An Aspx Page On Another Server Than The Page Calling The Content

Mar 22, 2010

I'm using this Ajax script [URL] to load content from an aspx page on another server than the page calling the content. So far I've learned that this is a no go. The problem seems to be that when using an absolute link to content the script fails as apposed to using a relative link.

I've searched the web for about 10 hours now, and I still haven't found what I'm looking for.

View 2 Replies

Web Forms :: Refreshing Client Web Page Upon Refreshing Server Web Page?

Mar 4, 2010

I have a requirement where a user logs on to a server where exists a website. The user bring up the site on a browser on that server and loads a power point presentation slide. At that time, users using their laptop clicks on the link to that site and sees that particular PPT slide loaded on the server. Then the operator/user on the server clicks on the second slide and the laptop would now see the second slide. Is this possible to do? If yes, then what technology to use? DHTML? or something else.

View 4 Replies

Page Changes Are Not Getting Reflected On The Server?

Jan 11, 2011

I have a vb.net project in 1.1. When ever I do some changes to the aspx pages on the server the changes are not getting reflected.

what shoulod I do to reflect the changes that I made on the server?

eg: if I change the title from testtitle to originaltiletle still testtitle is coming up.

View 8 Replies

C# - Redirect New Page From Server

Jun 28, 2010

i have this webmethod that redirects to a new page from server,

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
public static Boolean realizaConsulta(Dictionary<string, string> datos)
{
System.Web.HttpContext.Current.Response.Redirect("PRepConsulta.aspx", false);
}

but i got this error:

Microsoft JScript runtime error: Sys.Net.WebServiceFailedException: The server method 'realizaConsulta' failed with the following error: System.InvalidOperationException-- Authentication failed.

View 3 Replies

Access USB Port From Page (Server's USB)?

Dec 19, 2010

im creating a project.i developed a circuit for usb. i will connect this device to server's usb port. Can i access this device from a client?(not read/write file. i will send some commands to usb). Usb connection program is ready.How can i access from client? Which method will i use? web service,wcf or others.

View 4 Replies

How To Get Local IIS Server Time On Page

Jan 25, 2011

I have a header user control(Header.ascx), and i want to show the Local IIS Server Time in it after hosting the site on iis server. My IIS Server may be in diffrent time zone.

View 2 Replies

How To Request A Page With Server Code

Jan 26, 2011

I need to request a series of pages and want to do from the server code as if you were doing with Ajax, I can do?,

View 2 Replies

Is It Possible To Cache Page On The Server Side

May 19, 2010

Let's assume you have a big complex index page, that shows news articles and stuff. It's not going to change very often. Can you cache it somehow on the serverside, so requests don't force to server to dynamically generate the entire page every time someone visits it? Or does ASP.NET do this automatically? If so, how does it know if something has changed?

View 2 Replies

Run SQL Server 2005 Job From Intranet Page?

May 7, 2010

Is it possible to run a SQL Server 2005 job from an asp.net intranet page? I've been opening up SQL Server 2005 and manually running this and thought it would really be convenient if I could just click a button on a web page instead.

View 2 Replies

C# - How To Load A Pdf From Server As An Aspx Page

Feb 20, 2010

I have a folder with pdfs, but I don't want them to be public (like just typing www.domain.com/pdfs/doc.pdf).

I need them to have a security measure of some sorts (like www.domain.com/loadpdf.asmx?key=23452ADFASD12345 or using POST)

How do I do this?, ive found out how to create a pdf, but not how to load one from server.

View 2 Replies

A Page Can Have Only One Server-side Form Tag?

May 26, 2010

I am using master page and when i run this page it show error message which is mention below: a page can have only one server-side form taghow can i solve or fix this problem.

View 3 Replies

C# - Secure Comunication Between A Web Page And The Server?

Jun 1, 2010

I'm wondering if theres already a combo let say jQuery - Some C# DLL to proive a secure both way communication between ASPX forms with jQuery and a control layer based on ashx files with C# classes...[From comment below]Well I see I have to be more specific. The are things like sniffers on simple network analysis tools even like Firebug that let you see the data transfered via POST or GET. The idea to secure a Server Client application is to ensure that data isn't corrupt and compromised, and to achive that you have to make imposible to an atacker to report false info so the best is to have improved some cryptographyc algorithms both on client and server to crypt decrypt encode decode data...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved