We are running Exchange Server 2003. I want to be able to share my calendar with all members of an Active Directory distribution group. I configured my calendar share permissions to grant the distribution group Reviewer access.
Users running Outlook 2010 can see it just fine. However, those...
One of my clients called a few weeks ago to tell me that one of their users (User1) sometimes doesn't receive mail addressed to her. After a whole bunch of trial and error, I determined that it happens whenever another specific user (User2) is also included in the recipient list. User2...
I have SQL Server 2005 (Enterprise version 9.0.3042) configured for Database Mail. It is using our company's SBS Exchange 2003 server (version 6.5 build 7638.2: SP2) to send mail. The profile is configured to use my login credentials, but the "from" and "reply-to" are for a distribution group...
Thanks for the advice. I'm new to SQL stored procedures; I'm used to programming in C and BASIC. It never occurred to me that the order of parameters wouldn't matter!
Ugh...turns out I messed up the parameters. The code I posted above was from memory, not verbatim. The parameters are in the wrong order. I added their names to the code and now it works again.
I configured a SQL Server to send email on Friday. It was working just fine. The "Send test email..." selection in Management Studio worked, as did this:
exec msdb.dbo.sp_send_dbmail 'user@contoso.com','Test body','Test subject','TestProfile'
As of today, the above code no longer works. It...
Thanks for the tips, guys.
I suppose it might have been beneficial to point out that I don't have physical access to this computer. It's not even in the same state.
That said, it looks like my best option is going to be either Unlocker or Killbox at this point. I had already tried running...
One of my clients has a WinXP machine that was infected with a version of the Pandex trojan. All of the research I've done leads me to a single file and a series of registry keys that all need to be deleted. The problem is, I can't.
The file (c:\windows\system32\drivers\ekp62.sys) gives me...
Yeah, I always keep a phpinfo() script on my server when I'm doing dev work.
The line you're looking for is this one:
post_max_size = 8M.
I bumped that up to 50 and the upload works fine now. Thanks!
The part that bugs me is...why can't PHP at least pop a notice or warning that the max size...
I have a very simple PHP script. Here is its current code:
<?php
if (isset($_POST["Submit"])) {
if ($_FILES["inputfile"]["error"]==0) {
echo "<PRE>";
$fp=fopen($_FILES["inputfile"]["tmp_name"],"r");
$line=0;
while (!feof($fp)) {...
I have a page with a GridView. This grid allows you to sort it by clicking on column headers, it is paginated so it shows only 15 rows per page, and each row contains a DETAILS link that goes to another URL.
The problem occurs when a user sorts the grid by date, clicks through the pages to...
Yes! Jason, you are a life-saver. I've been trying to find the right combination of properties for days now. Thanks a ton!
Adam, I do appreciate the input, but I actually clipped that code from a MUCH longer and more complicated page. The code that I put in Page_Load is actually in a custom...
Well, I was successful in getting the questions to display correctly. But I still can't figure out how to retrieve the selected answers. Here's what I have:
Default.aspx
<asp:GridView ID="gvQuestions" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:TemplateField>...
I've been fighting ASP over this problem for a week now and I just can't figure out how to do it.
I'm using a GridView as an example. I don't strictly need to use it; I could use any of the other data display controls if you think that would work better. GridView is what I've been trying to...
There are many valid reasons for wanting to have a classic ASP web application and an ASP.NET application share the same session. You may be migrating a large one over to ASP.NET and need to convert it in stages. You may be tasked with adding a new ASP.NET module to an existing ASP page...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.