Search:
Type: Posts; User: TonyLoco23
Search :
Search took 0.02 seconds.
I have worked out a solution using CDO, tested it and it works, here it is:
on error resume next
dim mail
set mail=server.createobject("CDO.Message")
mail.from=fromAddr
...
I am trying to send an email with Arabic charcters using SMTPsvg.Mailer. Is it possible?
Here is my code:
set mailObj = Server.CreateObject("SMTPsvg.Mailer")
'set mailObj =...
Is it possible to use ISAPI Rewrite to redirect a domain alias to an actual domain?
I.e. I would like to redirect everyone that visits "MyAlias.com" to "MyDomain.com".
So say someone goes to...
Nevermind, I fixed it.
I had to change the charset to 1256 in the meta-http equiv tag aswell.
I am trying to get my asp classic vbscript page to render Arabic script correctly.
I can get the HTML to display the Arabic characters correctly by simply adding the following line at the top:
...
I am having the exact same problem and the link that yamaharuss supplied is now down.
What was the solution to this?
I am trying to implement a website in Greek. It seems that I need to specify utf-8 as the charset in order to render the Greek Alphabet.
However if I want to include the link to the Greek language...
I have a computer with Windows 7 32-bit. I am trying to download SQL Server Management Studio Express 2008 from the Microsoft website here:...
I am pretty new to using Visual Studio to build websites. I am more accustomed to using Dreamweaver.
In Dreamweaver it is fairly easy to upload webpages to an external host using FTP, you can...
I recently got started with Visual Studio 2005 to build websites. Everything was going pretty smoothly. I set up user security for my site using the Website Administration Tool and it automatically...
I wanted to use the built-in log-in controls that come with Visual Studio 2005. I am using an Access database to store all my usernames, paswords, etc.
As I understand it, I have to use the...
I am new to Visual Studio and am trying to use Master Pages for the first time. I was hoping that they would work similar to the Dreamweaver template.
In a Dreamweaver template you can create as...
OK, nevermind I already found the answer.
I just needed to set MaintainScrollPositionOnPostback="true" in the opening line of the aspx page, i.e. where it says "Page Language="VB".
I have a long aspx web form with many controls, the user has to scroll down the page to see some of them.
I have some radio buttons that if they are selected a new panel is revealed with...
Thanks for the help on this.
So do I replace "|DataDirectory|" with my actual path? I.e. D:/Domains/etc. ?
At what level of internet traffic do you find that Access takes a performance...
Ok so now the problem is that the filepath to the database is hardcoded into the asp control like this:
This is no good, because the path will be different on the host server. So I really...
OK, I have worked out that the whilst I cannot browse to a directory outside of the root one, I can simply type in any path I want, so that is what I have done.
Thank you Ribeyed, bizarely I could not get it work on my office computer but it works fine on my home computer even without a web.config file.
I like Dreamweaver a lot, it is super fast and...
Thanks for the reply.
In Visual Studio, when I add an asp control, such as a dropdown listbox, and I choose the datasource it only allows me to choose a datasource within the site's root...
I am working on a website, most of which is written in classic asp with an Access database that is stored outside of the root directory.
I am now working on some new pages on the site using aspx...
I am surprised noone has responded yet as this should be quite a basic question to answer.
Maybe I need to give more information:
I have .NET 2.0 and the .NET SDK 2.0 installed on my computer...
Hi,
I am trying to get aspx (VB) pages to work in Dreamweaver 8. I understand I am supposed to have a web.config file in my root directory, but what am I supposed to write in the web.config file?...
Actually I have been thinking about this some more and it seems that the most sensible way to do it is to do the reverse. I.e. to pass the address to the webpage and have the javascript function pick...
How can I call a Javascript function from my VB.Net code?
I have built a ASP.Net website in VS2005. It is one of those set-ups where you have 2 seperate files for the webpages: i.e. Default.aspx...