Happy Canada Day :rose: "Keep confirming and denying things " :-D :laugh: Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Happy Canada Day :rose: "Keep confirming and denying things " :-D :laugh: Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
:rose:Canada:rose:
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Snowing home :)[^] Happy Eid to all of you. Cheers
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
regardless of if it was self-interested or not I would call it Public relation.
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
If I am as busy as the Royal Prince and as hard working as he is, I would buy the palace that goes everywhere I go. He is also known to be big on social responsibility issues and charity work. See some of the pictures of him working even while camping. Prince AlWaleed [^] And these with International Figures[^] (it is in Arabic, it is ok if you can't read arabic, ... no one is perfect :cool: ) cheers
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
If I had a hammer!
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
code-frog wrote:
I'm not trying to brag.
Hey you have all the rights in the world to brag! Well done! Cheers
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties. On the Security page, under Server authentication, select the new server authentication mode, and then click OK. In the SQL Server Management Studio dialog box, click OK, to acknowledge the need to restart SQL Server. Make sure you restart the server. and remember "If Windows Authentication mode is selected during installation, the sa login is disabled. If you later change authentication mode to SQL Server and Windows Authentication mode, the sa login remains disabled. To enable the sa login, use the ALTER LOGIN statement." Cheers Ghazi
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Remember that your JMail job is running as the user that runs the SQLAgent service. I'd check to make sure this user can access the UNC you are referring to. Try logging into the console as your SQLAgent service account and running the job interactively. Hope it hlps.
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
" You must enable remote connections for each instance of SQL Server 2005 that you want to connect to from a remote computer. To do this, follow these steps: 1. Click Start, point to Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Surface Area Configuration. 2. On the SQL Server 2005 Surface Area Configuration page, click Surface Area Configuration for Services and Connections. 3. On the Surface Area Configuration for Services and Connections page, expand Database Engine, click Remote Connections, click Local and remote connections, click the appropriate protocol to enable for your environment, and then click Apply. Note Click OK when you receive the following message: Changes to Connection Settings will not take effect until you restart the Database Engine service. 4. On the Surface Area Configuration for Services and Connections page, expand Database Engine, click Service, click Stop, wait until the MSSQLSERVER service stops, and then click Start to restart the MSSQLSERVER service " See http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277[^]
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
use the key word image instead create table tab ( name varchar(30), dateofbirth datetime, photo image ) cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
HTH! Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
IF you are able to execute the DTS package manually using dtsrun.exe , then the problem relates to a bug addressed here http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q319058&[^] Then see the workaround methods in the clickity above! Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Hi, Unless you are using smart client this should not be allowed as a security principle. However, it would be interesting to see if there are posibilites to do so. Regards Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
below is written in asp ( (C)opyright 2001 - Robin Paardekam) however you modify to meet needs. <%@ LANGUAGE = VBScript %> <% ' Sending a message using NET SEND on a Windows NT network ' (C)opyright 2001 - Robin Paardekam ' Nice script to embed on your intranet. Send a message to any user ' on a network using your browser (!) ' More scripts like this can be found at http://www.paardekam.nl 'Checking for all necessary variables. Msg = TRIM(Request.Form("Msg")) NamUsr = TRIM(Request.Form("NamUsr")) Computer = Request.ServerVariables("REMOTE_ADDR") if Msg <> "" AND NamUsr <> "" THEN 'Sending the message Response.Write " Sending message to " Response.Write "**" & NamUsr & "**: " Response.Write Msg & " " Set server_shell = Server.CreateObject("wscript.shell") server_shell.Run "%comspec% /c net send " & NamUsr & " [FROM:" & Computer & "] " & Msg ELSE 'Displaying the form %> To: Message: <% END IF %>
Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
I second Braulio's openion. As amatter of fact about 9-10 years ago a list of servers that allows relaying was published as ablack list. This was to prevent and fight spamming. Many email servers rejected any messages comming from servers on the list. So how can you do that: you need to be able to find the MX record of the DNS entry for each recepient, or have an account at the server you are using and then use that account to send your messages. It is not a coding issue. It is a protocol limitation. Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
You are using relative url i.e. "..\otherpages.asp" so after you visit the https page other consequent pages will be assumed to be of the same protocol will be used last (https). Use absolute url (e.g. "http://www.codeproject.com/otherpage.asp" ) on the links of other pages. Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Your server is not allowed to relay messages that are not (either from one of it's users or to one of it's user's inbox) So to send the message either the sender or the receiver has to be from the server's (i.e. me@myserver.com) Nothing wrong with your code. Just the test email addresses need to be reviewed. Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
See how Scott Mitchell emails the rendered output. as for the css have the css text file points to an aspx instead of a css. key words to search for "Stream Render Response" clickity http://aspnet.4guysfromrolla.com/articles/091102-1.aspx[^] Cheers.
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */