Posted at July 21, 2009 @ 8:32 am by PapaJJ in Uncategorized
And here is an image….
Posted at July 20, 2009 @ 3:28 pm by PapaJJ in Uncategorized
Posted at July 20, 2009 @ 2:52 pm by PapaJJ in Uncategorized
This is the content…just testing from word….again
Posted at December 16, 2008 @ 1:33 pm by PapaJJ in Nothingness
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
Posted at December 5, 2008 @ 3:07 pm by PapaJJ in Nothingness
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!!
Posted at September 10, 2008 @ 7:51 am by PapaJJ in C#
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.
Posted at August 13, 2008 @ 6:42 am by PapaJJ in Utilities
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
Posted at August 12, 2008 @ 6:37 pm by PapaJJ in Wordpress
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!
Posted at August 12, 2008 @ 4:49 pm by PapaJJ in C#, html
<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;" />
Posted at June 10, 2008 @ 12:17 pm by PapaJJ in Nothingness
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.