And here is an image….

This is the content…just testing from word….again

I read this today...kind of made me think.

"If you don't have daily objectives, you qualify as a dreamer."
--quote by Zig Ziglar

This time of year blows my mind away. Don't get me wrong, I love the holidays. It's the planning that I can't stand. For some reason, my family (and I'm sure I'm not alone) seems to turn a bit retarded at this time of year. And no, not literally...just when it comes to planning the various gatherings.

It adds unnecessary frustrations to what is an already stressful time of the year. Why is it stressful?

Holiday-tardation I think...

Happy Holidays!!

Tags: § §

If you are trying to add roles to users at the time of Creation here is a simple to do it. Simply drag the CreateUserWizard to your design view of the webform (or add it in source, whichever you are comfortable with).

When you first add it to the form and look at the source view it will look like this:

 
<asp:CreateUserWizard ID="wizCreateUser" runat="server">
  <WizardSteps>
    <asp:CreateUserWizardStep runat="server" />
    <asp:CompleteWizardStep runat="server" />
  </WizardSteps>
</asp:CreateUserWizard>
 

You will need click the "Customize User Step" in order to be able to add objects to this step. After the CreateUserWizard has been "Customized" you will be able to see a lot more of the wizard in the Html markup. This is where you want to add a CheckBoxList as shown below:

 
<tr>
<td align="right">
      Roles
   </td>
<td>
      <asp:CheckBoxList ID="chklistRoles" runat="server" />
   </td>
</tr>
 

This will allow you to display the roles and select them as needed.

Now, to actually do something with the roles.

In the code behind, you will find a method called wizCreateUser_CreatedUser. This is where you will add the following code:

 
protected void wizCreateUser_CreatedUser(object sender, EventArgs e)
{
  CheckBoxList chklistRoles = (CheckBoxList)
    wizCreateUser.CreateUserStep.ContentTemplateContainer.FindControl ("chklistRoles");
 
  foreach (ListItem li in chklistRoles.Items)
    {
      if (li.Selected)
        {
          Roles.AddUserToRole(wizCreateUser.UserName, li.ToString());
        }
     }
}
 

Good luck and I hope this helps.

I just switched to FileZilla for my FTP client. I just saw it was free and gave it a shot. So far so good, easy interface and simple to use. Give it a try.

Overview

FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.

Features

* Easy to use
* Supports FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP)
* Cross-platform. Runs on Windows, Linux, *BSD, Mac OS X and more
* IPv6 support
* Available in many languages
* Supports resume and transfer of large files >4GB
* Powerful Site Manager and transfer queue
* Drag & drop support
* Configurable Speed limits
* Filename filters
* Network configuration wizard
* Remote file editing
* Keep-alive
* HTTP/1.1, SOCKS5 and FTP-Proxy support

Download here

Tags: §

After upgrading to 2.6 I found the permalink feature not working properly. I tried the 3-step process of uploading a new rewrite.php, saving default & then saving custom settings.

No Luck with that.

I did a lot of reading about the .htaccess settings but that didn't seem to be my problem so I kept reading.

I finally stumbled into this thread which solved my problems. It's an easy fix so thank you!

http://wordpress.org/support/topic/189058

 
<asp:TextBox Id="mytextbox" runat="server" Visible="false" />
 

If you are trying to read a value from a hidden textbox and you have the Visible attribute set to false, you will most certainly have problems.

To get around this, simply DO NOT set the Visible attribute to false.

Instead, set the style attribute to "Display: None;" like this.

 
<asp:TextBox Id="mytextbox" runat="server" Style="Display: None;" />
 
Tags: § § §

Every time I start to write something here I realize how vacant the blank page is. It seems at times pointless to begin to write when there is such emptiness on these pages. It feels as if these pages should be much more meaningful and at the same time they seem pointless.