Call An Asp Program From An Html File-
I want to have a default html page as my first page in a website I'm playing with. How do I call my asp programs from the html file? I never did that before and don't know how to do it. I tried using <a href..etc but it's not doing anything.
View Complete Forum Thread with Replies
Sponsored Links:
Related Messages:
How To Call C Lang. Program Through ASP And Show Output In Html.
I have front end in ASP and I need to call C Language prog. for matrix search program. I have used this code(which I got here) <SCRIPT language="VBScript" type="text/vbscript"> Function popC dim wsh set wsh = CreateObject("wscript.shell") wsh.run("D:TC ew.exe") set wsh = nothing End Function </script> This code works fine but I need to show the output in html (so people can see over the net). .Exe is for command line argument. As I know that command line argument can not be shown to the client. Is that mean that C prog. needs to create instance and instead of 'void main' write 'string function' which which will have return values and this 'class' I will call in ASP program.
View Replies !
View Related
Call Another Program
With .asp,how do I call another program?I would like to have my .asp script make a call to a PERL script, wait for the PERL script to finish, and then continue with what is/isn't returned from PERL. I know in PERL this is simply done: system(theASPprog.asp). No fork is created, so the PERL prog waits for the .asp to finish.How do I do this with ASP?
View Replies !
View Related
Reeading .XML File In ASP Program
The XML file I am reading in my ASP program doesn't appear to have carriage returns. For example: The XML file looks like this: -<animal> <name>Dog</name> </animal> but when I read it it looks like this: <animal><name>Dog</name></animal> I am opening the file with OpenTextFile. I am trying to parse the file in my code so I really want it to look like this: -<animal> <name>Dog</name> </animal> Can anyone offer suggestions.
View Replies !
View Related
Program To Edit .adb File
I've taken on a website, which seems to use an '.adb' as it's database source. It connects to this using the microsoft Access driver, as it would an Access database. I've Googled, and can't seem to find out how to open the .adb file and edit it.
View Replies !
View Related
ASP File Upload Program
Can any body give me a perfect link or program for file uploading program. Actually i have to write a program for mail attachment. And for attaching mail I have to give the virtual path of the attachment file and it is possible only when file will be upload within a directory that is under virtual directory from physical path.
View Replies !
View Related
Program For Delete File
HI can any body give me a program for delete a online file in asp. Actually I have created a program for mail attachment. For attaching the file first of all I have to upload the file in a directory but after sending attach file the file should be remove from directory.
View Replies !
View Related
Upload Excel File To Asp Program
I will develop a program to enroll a group of people on-line. Since we don't have number limitation for the people in the group. I am wondering if there is any company allow people to upload an excel sheet which contains data about the people in the group and the asp program can import the data into the program direclty, so the customer don't have to type each person's info individual sin it's error prone and time consuming for a group having many people. I believe there are some securities concerns there and almost think isn't dorable, but just want to get some experts' opinions.
View Replies !
View Related
How Do I Call A Function Defined In Html Script Tags From Asp Page?
i have this.asp page: <script type="text/vbscript"> Function myFunc(val1ok, val2ok) ' do something ok myFunc = " return something ok" End Function </script> <html> <body> <% val1ok = something1 val2ok = something2 thenewVal = myFunc((val1ok), (val2ok)) %> </body> </html> i want to call and use the returned value of Function myFunc(val1ok, val2ok) ,without omitting the html script tags and replacing them in <% %>, (My Question is:) How do i call a function defined in html script tags from asp page?
View Replies !
View Related
How To Call A COM Executable File From ASP File?
i am using vbscript in ASP and i wanted to call a COM executable file from that ASP file. i would like to know the ways how to approach this problem. i have read the articles given in http://support.microsoft.com/defaul...kb;en-us;299714 and http://msdn.microsoft.com/library/d...comtutorial.asp i found those 2 pages were not 100% helpful for me as i am not using Visual Basic to create COM executable. i would like to see some examples or some other tutorials explaining the above question.
View Replies !
View Related
Is It Possible To Use One Include File That Contains And Call Many?
I was reading on a few forums and googling all morning trying to find code for using one include file to call multiple include files for various asp pages. For example, we have created nav bars for several regions in the US. As such, each region needs a unique top and right nav to include geographic specific information. I've created 6 include files, but I would like to put all the nav include files in one main include file and call the unique include files as needed. I started doing a select case or If then functions. Now once that's done, (being a newbie) I don't understand how to write the asp code that calls the unique include file on the page where it applies. Code:
View Replies !
View Related
ASP Or HTML In Asp File
I am just curious as to when it is better to use straight HTML or ASP (response.write) to put out HTML code on an ASP page. For example, if I have an ASP page that is including another ASP page, but the rest of the code is just HTML, which is the better way to do it. Here is my example: Code:
View Replies !
View Related
HTML File
I have a website that takes a long time to generate/load, so I'm looking for a way to have the ASP update hourly and save that to an HTML file, which is the actual file viewed by users. I could go through and have everything written via writing to text file, but this seems like more work than needs to be done. Is there any way I can have the ASP page loaded once an hour and have the output saved as a seperate HTML file?
View Replies !
View Related
Parse HTML File?
I'm working on a project where there are just under 1300 course files, these are HTML files - my problem is that I need to do more with the content of these pages - and the thought of writing 1300 asp pages to deal with this doesn't thrill me. The HTML pages are provided by a training company. They seem to be "structured" to some degree, but I'm not sure how easy its going to be to parse the page. Code:
View Replies !
View Related
File Upload HTML/JS To ASP/SQL
I've written a few HTML/javascript web sites that push with ASP into SQL databases. The one thing I've never had to do is create a file upload, and now I'm having a heck of a time figuring out how to do that. I've got an input type=file and I have a preview if it's a picture that updates as it's changed, but how do I send the file to the server? I found one PHP example, but I'm not very familiar with PHP and would rather not have to learn it just for this (though it is on my to-do list anyway) Has anyone done this? Can you enlighten me as to what the next step is?
View Replies !
View Related
Run ASP File In HTML Page
I have developed a HTML page containing form and table having some fields, Now What I want is that when I Click on Submit Button then all of the Form Fields should be email to a particular email address just like as they r on the form. So my problem is that i have created an ASP page containing code about to pick data form form fields n send it to email address i mentioned, But i dun know how to request an ASP page in a html page, Iam using <Form name=MailForm action=MailForm.Asp method=post onsubmit="return Validateform()"/> <Input type=hidden value=junaid@easterntextiles.com name=recipient/> Just after the table creation but it doens;t work because when i click on submit it ask me to save or open MailForm.asp. So is there anyone who can explain me how to run this file directly with in html page or how to use asp code in html page.
View Replies !
View Related
Database >> Html File Via FSO?
how to convert a database table into an html file via FSO and whether more seasoned asp programmers recommned this route. The main reason I am attempting to do this is becuase we are constantly being told by so-called marketing gurus that 'html' pages are more search engine friendly. Code:
View Replies !
View Related
File Attributes With ASP In HTML
I am using the FilesystemObjects to get a directory and file listing and generating a web page of that listing, but I need to filter out files with the SYSTEM tag, so it wont show files I dont want it to, Below is my full code for the ASP page, I have Commented where I need to change the listing structure Code:
View Replies !
View Related
Extract HTML File
I was wondering if anyone could help me out with extracting/stip an HTML file. I was thinking of using RegExp object in VBScript, but I'm not sure what is the correct pattern. I would like to stip the HTML so I only get the content inside the <BODY> tag (<BODY> </BODY>) ...
View Replies !
View Related
Showing An HTML File
Showing an HTML file in part of a Webform.I have a Webform with some buttons on the left side of the form. What I want when clicking one of the buttons is to show an HTML document in a part of the Webform (as if it was a Frame page).
View Replies !
View Related
Copy HTML File
I'm running a Win2k server with FP 2002 Extensions using discussion boards.There is a time delay in the posted content and the way our moderators are managing it now involves logging into the server,copying the TOC file,deleting the public TOC file and renaming the copy to the new public version. --Copy and paste Tocprivate.htm -> delete TocPublic.htm -> rename copy of Tocprivate.htm to TocPublic. Is it possible to script something that would allow this to happen with a single click of a button through their web browser?
View Replies !
View Related
Create A Html File
I need to be able to generate/create a html file. I know that probably the best way to do it would be to use PHP or CGI, but my server doesn't support either. Is there a way (and can you point me in the direction of some help) of doing it using ASP?
View Replies !
View Related
Generate Html File
how to create (generate) .html file by using asp. I am not sure if this possibility even exists... if not, is there any other way I could generate .html files? The thing is that I have to retrieve info from database and the generate .html file. I know I could have it as .asp, but this woudl my index page and I would like to use it for search engine, which are not very happy with other extensions than .html.
View Replies !
View Related
ASP / HTML File Differences
If you have a website built entirely in ASP, but not using any type of database or dynamic content, is there any particular reason (apart from server requirements) that someone would want to do this? Also, if you create a website in dreamweaver in HTML, then just save the file as .ASP, or alternatively copy all the content from the HTML file to a new blank ASP page, then save that, is that pretty much the same as just building it in ASP? i.e Would it all work right?
View Replies !
View Related
Render A Html/text File
i have a field which contains html code, which is then rendered as a layout for several templates.the user can change the template if they so wish. the layout html is currently stored as a varchar 8000 - but 8000 characters is not enough for detailed layouts. i dont know where to begin on this problem, does anybody have any useful links. i would search in more detail but i dont know the procedure is called for what i am doing what i need to do, is have the asp refer to a html/text file and render the html directly from that file? Is this possible? or is there any other such ways to do the same thing.
View Replies !
View Related
Div, OnMouseOver, Open HTML File
I am trying do do this when a mouse is over a link (as the image attached), so a popup comes and show the database results, like i have done using Degsy solution. I have a page (nw.asp) and it queries the db information. if is possible to call this .asp page in the div, I can use the 'a href' like this: Code: <a href="nw.asp?id=<%=rs("id") %>">. So this way will be possible to mouseover others links in this page, and as it is asking for id, will bring all the right values o. I am trying to grab more information around this solution and any light will be so kinda.
View Replies !
View Related
How To *include* A File In An Html Page?
i have many *.html* pages with the same header. i wanted to make one *header* file and put a link to that file in all html pages. So if i ever need to make changes in the header, i will need to edit only 1 file rather than all pages. for *.asp* pages this code works fine:- <!-- #include file="filename.inc" --> but the same **include** does not work for *.html* pages. i guess there is some other way to put a link!
View Replies !
View Related
Embed Asp File In Html Page
I have a code in asp which counts the number of visitors visited the site, how do I call this file to the html page? Is it by using <!include ...> or is there any other way of doing it. I tried using the include method it is not working and also I tried using <script language="JavaScript" src="hitcounter.asp"></script>, that also does'nt work. When they open the index page it should automatically display the visitor's number. Can you please help me with this?
View Replies !
View Related
HTML + <input Type=file>
I'm trying to input image file using this synax. <input type=file name="tx_file" accept="image/*" class=boxText> But when open file dialouge appears, it shows all the file and user can select any file and i.e. i dont want.
View Replies !
View Related
Adding Executable (.exe) To Html File
i am using frontpage 2003. I have an image that I have sliced in Photoshop, saved as an html and opened it with FP2K3. What I would like to do is find a way to add a .cmd or .exe or .bat file to a section of the html code. Can this be done? What I am trying to do is pick either a hotspot or hyperlink and embedd the executable, so that when picked it runs. all it is really doing is rdp'ing to a session on the server.
View Replies !
View Related
Previously Generated HTML File
This is a tricky one for me and I'm hoping someone might have a bright idea. Ok, here goes. I've made a form generator which generates a html file. I need the user to be able to go back and edit the form at a later date perhaps adding another form element. I know that you can 'openTextfile' and get the html code. I need to work out a way of the user being able to add a form element at a specific point (ie between two other previously generated form elements). I know I could load the html into a textarea and have the user edit it from there, but I am assuming the end-user has no (or little) html knowledge.
View Replies !
View Related
Include Header File With Extention .html In Asp
I want to make a web page in which I would include first header from header.html(it works fine),then sql connection subs from sql.asp,then variables from config.asp and so on. when I write include for those asp files it doesn't seem to read them (no variables can be read)and when i try using server.execute,it shows me their content like in normal html files.I've tried to find a solution, but either I haven't looked long enough or it's not available.
View Replies !
View Related
Display HTML Data In Excel File
I am displaying the data into HTML table into a EXcel file using the REsponse.header and content type, The data retrieved from the database is sucessfully displayed and I am able to open Excel application and save it. But in One of my TD tag I have a image <IMG> tag which should disply the image, but in the excel application the image is not loaded, If I open the table in web browser the image is visible. Also if I select the save open form the file download box, there is a blank browser window still open, I open this file with window.open functionality. Can somebody suggest how to close the blank window when the excel file is saved on the client PC instead of opening.
View Replies !
View Related
Reading Html From Other File And Publishing Only Part Of It
I'm having a problem: I've two files, an html file and an asp file. What I've to do is to publish part of the html file into the asp file. I started OK, the file was opened and that stuff. I published part of it, the problem is that it publishes from the middle of the file to the end of it, and I only need the middle of it. For example, from the 3rd <tr bgcolor=#003399> tag to the <blink> tag I'd need to get published. But I get published from the 3rd <tr bgcolor=#003399> tag to the end of the file. Code:
View Replies !
View Related
Linking An Access Database File To HTML Page On IIS6.0
My client has various Access databases that they want to be able to access (using MS Access, not through ASP pages). I thought I'd be able to create the link from an HTML page but when I do that and click the link, the file is downloaded to the local temp folder. I want the database to open directly from the web server, and then changes must be saved.
View Replies !
View Related
|