Calling Aspx Page
I have asp page. In that I want to call a aspx page in the background.That called aspx pages will send and receive mail in the background.The calling of the aspx pages should be hidden from the user.Is it possible.
View RepliesI have asp page. In that I want to call a aspx page in the background.That called aspx pages will send and receive mail in the background.The calling of the aspx pages should be hidden from the user.Is it possible.
View Repliesi am having examples to work with ASP,I came across a small ASPX module that I would like to call from the ASP module.How can I do this?
View Replies View RelatedI have an asp.net page that I would like to open up another asp.net page within the first one. Like a parent - child relationship. I need to display a graph in the child on the parent.
View Replies View RelatedWhat I want to be able to do is create a user control that will display an
entire page page within it. Does anyone know how to do this or better yet
have any same code?
never seen one of these extensions before. anyone know what it is?
View Replies View RelatedI have an aspx page that has the "include" code in it which includes another page that displays information. I also have an upload page that allows users to upload a simple html document onto the server. The include code calls that html page to display the text on that page.
The problem is when the user uploads that html page, the aspx page does not refresh to reflect those changes, even if the user hits refresh in their browse. However, if I manually connect to the server and open the aspx page that contains the code and hit save then the webpage updates to reflect the changes that were made to the include page. Can anyone help me fix this problem?
i have a asp project. however there is one module i want to create in .net. can i include the .net module in my asp project?
View Replies View RelatedI have 2 ASPX files. One is the main, the other a smaller one which is the
center part of the main ASP file.
Now, how do I load the 2nd ASP into the first one?
Something was wrong with my IIS 'Service unavailable', I decided to uninstall IIS and then reinstall it, then the simple pages can be viewed but the aspx pages not. Then I uninstall SQL server 2005 and Visual Studio 2005 and reinstall it.
Now I can view simple pages but not aspx pages, but when running from the debugger of Visual Studio, it Works good. When I access an aspx page 'The page cannot be found' error occurs
I have 2 ASPX files. One is the main, the other a smaller one which is the center part of the main ASP file. Now, how do I load the 2nd ASP into the first one?
View Replies View Relatedwhat i shoud do if i want to set all the contents in .aspx page such that it will become fit in the internet explorer window, b'coz it always leaves some balnk space from right. hw can i solve this problem.
View Replies View Relatedi am using visual studio 03 to create a web app using asp.net 1.1
i created a table in a text box using System.Web.UI.WebControls.Table
i am adding data to it...
i want to knwo how i can set the width of colums.
i hve 2 columns and one of them is way to the left..
i hve fiddled around with the html and the tablename.blah.blah stuff
but i dont know which one to use
In IIS, when I try to browse an aspx, I get a popup message asking me if I want to open or to save the file instead of actually browsing to the page. Any idea of what could cause this issue?
View Replies View RelatedThis is the error which i got when i tried to display message in my text box which is a aspx page.
Error which i got:Server Error in '/' Application.
--------------------------------------------------------------------------------
Runtime Error :
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
I have a IIS server somewhere hosting an aspx website. Whenever i tried
to access the website after some times, my browser will like wait about
10-20 seconds before showing the contents. But after that, subsequent
pages is load up almost instantly. The page is not heavily loaded and
every pic should be cached.
And sometimes, after 1 or 2 days didn't access the site, when i tried to
access again, it will never load up the page. My IIS server is never
shutdown running 24/7. I have to go to my IIS server and move around
with the mouse then go back to my workstation and try again in order for
it to work. (My IIS server (also my Internet gateway) will not go into
Sleep mode because i still can surf from my workstation.)
We are hosting a web site, and within this web site we are trying to open a .aspx page within the DMZ. Is there anyway to do this? We are currently running Windows 2003 on both servers, and both servers are running IIS. Redirecting the page of course does not work, any other ideas?
View Replies View RelatedI am working on a project where the site was already created using frames and .aspx pages. I was asked to update pages as well as add new functions. This project is an online training course for internal use only.
I need to put a Print Button on the left frame called "buttons.aspx". I need it to print whatever current content is on the main page. So, of course this will vary from page to page because each has a different file name such as 3_1.aspx and 3_2.aspx. I was able to get the Print function to work but it only printed the "buttons.aspx" page which was nothing more than a few navigational buttons.
I have a asp project. One of the module, i wish to develop in .net, can i include it into my asp project?
View Replies View RelatedI've got an aspx page with a 'mailto' with accented characters in the
subject field, when the mail is created the accented characters aren't
displayed correctly.
The mailto looks like this:....
I have a folder on webserverwwwroot, called staticContent. The folder
has several message of the day text files, such as RepMotd.text. I have
an admin page, AdminMotd.aspx, that allows a user to view and edit the
contents of the files.
Webserver is running Win Server 2003 64-bit and IIS 6.0. The development
machine is Win XP, using Visual Studio 2005 (thus ASP.Net 2.0.)
In IIS, staticContent folder has Write checked and execute permission is
set to Script Only . In NTSF, the folder grants full permissions to
Network System.
When I try to overwrite an existing file in staticContent, or try to
create a new file, I get a System.UnauthorizedAccessException. The
Application error log on webserver notes that the error is on the page
I am trying to run, that my user name is what I logged in as, that I am
authenticated, and that the thread account name is NT AUTHORITYNETWORK
SYSTEM. Elsewhere, I am able to read these same files and insert them
dynamically into the web page.
This is the code that I am trying to run in AdminMotd.aspx, cut down to
the basics. If it makes any difference, the code is run "in page" and
not as part of a separate code-behind file.
******************
<script runat="server">
Protected Sub MotdChange(ByVal ThisFile As String, ByVal ThisText As
String)
Dim sw As StreamWriter = New StreamWriter(StaticRoot + ThisFile,
False)
sw.Write(ThisText)
sw.Close()
End Sub
Protected Sub RepMotdChange_Click(Byval sender As Object, ByVal e As
System.EventArgs)
MotdChange("RepMotd.text", RepMotdText.Text)
End Sub
</script>
<asp:Content ...>
<asp:TextBox ID="RepMotdText" runat="server"></asp:TextBox>
<asp:Button ID="RepMotdChange" runat="server" />
</asp:Content>
********************
I have traced that the error occurs when New StreamWriter is called,
rather than when actually trying to write to the file. Obviously I'm
missing something, but danged if I can find it.
How can I call one ASP page from another
Page1.asp returns me some strings in the form of response.write
Page2.asp will call page1.asp and use that long string returned from
page1.asp....
I have one VB exe file. Can it be called and opened in ASP page like as html form is shown. I want to execute the exe file from any machine. Should that machine have vb and sql.
View Replies View RelatedI know that this is easy to do, I've done it before, but I can't find how I did it before.Basically, my ASP page can createObject for a compiled DLL, but it can't do
it for the non-compiled DLL (running in VB6).
WE want to call an ASP page that will contain our site navigation html. But call it from pages with .htm extension. Our site is on an NT server. Is this workable? We do not want to rename our existing .htm pages to .asp. This would screw up our page positions on search engines.
View Replies View Relatedis there a way of getting the page that called the current page? Like, I'd like to add a 'back' button that fills some info and then sends to the previous page, which could be one of many pages that can call this current page.
other than adding a form hidden field and passing it at submit or whatnot, is there something like session('callingpage') or something like that?
I have an ASP page that has over 150 records listed. I would like to have an "Index" (A,B,C,D...) at the very top of the page. Once a letter is clicked, I need to:
1) Call a SQL string like "SELECT * from WoD Where UCASE(WotD) LIKE " & UCASE(strSelected) & "*" & Chr(34)
2) Recall the SAME page (Not another ASP page) withpopulating with the new recordset.
I am having a total brain fart on this and can't figure it out.
I wrote a dll and I want to call it from asp page, but I can't do it. I am using the method: server.CreateObject, but can't interface with the dll. I think that my problem is registering the dll to Windows, and when that I am doing it I receive an error message that telling me that "DllRegisterServer may not be exported". what should I do?
View Replies View RelatedI am trying to execute some script on my server that is currently run on an ASP page.
However, I am finding that it can often take up to 5-10 minutes to run and the user is not needed for this execution anyway. What I am attempting to do is write the script into a .vbs file on the server and execute the script when necessary.
I would like this script to run without the user knowing and therefore I do not want the asp page to wait for a return from the script. I am trying to use:
Set WshShell = Server.CreateObject("WScript.Shell")
ReturnVariable = WshShell.Run("c:connorVBScript1.vbs", 0, FALSE)
The FALSE tells the system to run the code and not wait for a return. The webpage seems to run and returns to the user as it should but the script is not executed.
Anyone have any ideas?
I have a function in a script file that I use from a couple of different pages. Can I, within the function, detect which page is being viewed (which page called the function)
View Replies View Relatedi was wondering if i call an activex dll that resides within the same domain, but on a different server from IIS.
there is no problem if its registered on local machine, server.createobject(), i read about MTS and was thinking it could be the solution, but it has a few restrictions or should i say warnings about using components developed without regard to MTS and if the component uses other components...and so on, frankly, im scared to use it.
How do I call a page in a password protected directory? In other words, I had my admin make a directory protected with authentix and now I want to use a page outside that directory to call a page inside that directory. How can I do this
In my asp page I have a form with dropdown list,some text boxes and a submit button.When the user selects any value from the dropdown list, I want to retrive the selected value in same page and display it.I know it's not tough,but still Iam unable to get it...ending up with some error.Can anybody help me out in this matter?
View Replies View RelatedI am trying to call a field value from my database - which gets open in an included file (all work on database must be done in that included file), if i use response.write(rst("pagename") it would print fine in the page when I call the sub i.e <% call pageNameFind() %>
But i want to get the field value to appear like this <% PageTitle = pagename %> where pagename comes from the included sub pageNameFind pagename = rst("pagename")
It doesn't pick this up however - how would I do this? This value will then be sent on to another included file at later stage. and I must have the <% PageTitle = myvalue %>.