User Profile

Collapse

Profile Sidebar

Collapse
tagg3rx
tagg3rx
Last Activity: Apr 22 '08, 07:14 PM
Joined: Jun 14 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • tagg3rx
    started a topic Fundamental Sharepoint Interaction Question
    in .NET

    Fundamental Sharepoint Interaction Question

    Hello,
    I'm trying to utilize the sharepoint web services to remotely upload documents and it is requiring a listitemid and for the life of me i can't figure out where I get this value.

    Here is the environment and code etc...
    I created a doc lib for testing on my sharepoint site name "Test".
    I added a webrefrence to my project pointed to the
    http://.../_vti_bin/lists.asmx

    I utilized...
    See more | Go to post

  • tagg3rx
    replied to Help Tracking Down an Application Error
    in .NET
    Hello,
    I Am using 3.5 and i looked at the history control - it looks like it's more for disabling the entry of history items. I just implemented the following i to catch the browsing history just prior to the error thought i'd share for others t use / critique

    in the master page i added the following function called on page load:
    Code:
        protected void BuildLogHistory()
        {
            StringBuilder
    ...
    See more | Go to post

    Leave a comment:


  • Don't forget to add autopostback to the combo boxes or you wont be able to perform any action when the user checks a box
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to Help Tracking Down an Application Error
    in .NET
    Hi all
    My project's a web site, not a web project, I do have it on my todo list to upgrade to a web project because it does add some functionality - on the down site of the web projects you have to build em every time you want to see a change made in back end code.

    As for my issue I came in this morning and had 15 more instances of the same error - The references listed in the properties are (as expected) the same ones listed...
    See more | Go to post

    Leave a comment:


  • Code:
    using System.Net.Mail;
    MailMessage _mMessage new MailMessage();
    _mMessage.To.Add("abc@123.com");
    
    MailAddress _maFrom = new MailAddress"abc@123.com","Name");
    _mMessage.From = _maFrom;
    
    _mMessage.Subject = "Subject";
    _mMessage.IsBodyHtml = false;
    _mMessage.Body = "Body";
    
    SmtpClient _emailer = new SmtpClient();
    ...
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to Help Tracking Down an Application Error
    in .NET
    Yea the prod server has MSOffice2k3 as well as the office interop assemblies.
    It would be a shame to have to buy a copy of crystal reports on this since I'm not actually using it.

    I found they offer a free viewer on there site - I'm going to download that and install it on the server see if i stop seeing the error
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to Help Tracking Down an Application Error
    in .NET
    Thats a great question - one to which i don't have an answer.

    Say that one does - I'm more interested to figure out how I get the needed files / GAC items over to the production server so this error stops as opposed to removing an assembly from the build.

    I searched My Dev box for a folder named CrystalReportWe bFormViewer
    I did find 2 in the c:\progra\micro soft\asp.net folder but neither folder contained a crystalimagehan dler.aspx,...
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to Help Tracking Down an Application Error
    in .NET
    I don't see any reference in the webconfig to anything that looks like Crystal Reports - I searched my entire Project for the term "Crystal" and came up null.

    Here is my Web Config for review (warning it's big)
    Code:
    <?xml version="1.0"?>
    <configuration>
    	<configSections>
    		<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup,
    ...
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to File Upload not worked in update panel
    in .NET
    this is a known issue with Microsoft Ajax and has been discussed at length in many forums. There are several work arounds - the one I use (which isnt my favorite approach) is placing a second aspx page with only your file upload box in an i-frame and having a button on that page to attach the file (basically resulting in 2 submit button on the page - one to handle the file upload - one to complete the entire form submit. Then in your calling page...
    See more | Go to post

    Leave a comment:


  • I Think the following Code Snip it will give you what your looking for.

    Code:
            string _str = "Laptop PC";
            List<string> _vals = new List<string>{"Computer", "Monitor", "Laptop PC"};
            List<string> _result = new List<string>();
            foreach (string _val in _vals)
                if (_val.Contains(_str))
    ...
    See more | Go to post

    Leave a comment:


  • Another bit of advise here is to do all you lay out with CSS (don't statically set any layout properties in your web forms) and then create different style sheets for each browser type. Then it's a matter of tweaking the css file for each browser through trial and error.

    It Wont necessarily fix everything but it will get you close
    See more | Go to post

    Leave a comment:


  • tagg3rx
    started a topic Help Tracking Down an Application Error
    in .NET

    Help Tracking Down an Application Error

    Hi All,
    I recently implemented a global error catcher in my application that sends me an e-mail every time an error happens. One error I'm seeing regularly that I can't track down appears to have something to do with Crystal Reports. However no where in my application am I using Crystal Reports. I think it may be installed in the Library on my dev box and not on the servers (dev and prod both sending this error).

    Here is...
    See more | Go to post

  • tagg3rx
    replied to escape character CTRL+Y
    in .NET
    could you recommend a reference guide to look this up - i'm having a challenge googling this and finding what I'm looking for.

    Thanks
    See more | Go to post

    Leave a comment:


  • tagg3rx
    started a topic escape character CTRL+Y
    in .NET

    escape character CTRL+Y

    Hi All,
    I'm writing a telnet program to automate some chores around our network and I have a switch that requires you press CTRL+Y to bring up the login prompt -

    Does anyone know the escaped equiliviant?

    Thanks
    Daniel
    See more | Go to post

  • tagg3rx
    replied to captcha
    in .NET
    check this link
    http://www.codeproject .com/aspnet/CaptchaControl. asp

    They have made a control to do CAPTchA
    See more | Go to post

    Leave a comment:


  • tagg3rx
    replied to rerender calendar_DayRender on postback
    in .NET
    Yea I omitted that part as it's part of the text i want to change - the number is no longer selectable but i added a link at the bottom of the cell to select it.

    Here is the revised code so you can test:

    Code:
    protected DateTime _reqStart;
     
    protected void calMain_DayRender(object sender, DayRenderEventArgs e)
    {
        e.Cell.Text = e.Day.DayNumberText + "<br>";
        if
    ...
    See more | Go to post

    Leave a comment:


  • tagg3rx
    started a topic rerender calendar_DayRender on postback
    in .NET

    rerender calendar_DayRender on postback

    Hello,
    I am trying to modify the cells inside a calendar control after they have been initialy rendered, i want this to happen on the SelectionChange d method.

    Heres a snipit of the C# codebehind so you can see what I'm trying to do:

    Code:
    protected DateTime _reqStart;
    
    protected void calMain_DayRender(object sender, DayRenderEventArgs e)
    {
        e.Cell.Text = e.Day.DayNumberText + "<br>";
    ...
    See more | Go to post

  • tagg3rx
    replied to Version Tracking
    in .NET
    I got it up and working and it's looks pretty slick - just wanted to drop this link to a video i used for the set up (was getting a little frustrated till i found it)

    Hope it helps others

    http://weblogs.asp.net/dwahlin/archi...e-control.aspx...
    See more | Go to post
    Last edited by RedSon; Oct 10 '07, 08:17 PM.

    Leave a comment:


  • tagg3rx
    replied to Version Tracking
    in .NET
    Thanks,
    I was already thinking subversion, but I wasent sure it was asp.net friendly.
    Actually knowing almost nothing about source versioning I am hoping that the product i choose is simple to install and maintain as I have enough on my hands designing and coding, the last thing i need is to have to spend much effort on this.

    Is subversion fairly easy to set up and use ?
    See more | Go to post

    Leave a comment:


  • tagg3rx
    started a topic Version Tracking
    in .NET

    Version Tracking

    Hi all, hoping someone can point me towards a version tracking system for .net development. My projects are starting to get kind of large and my bosses want me to implement some form of version tracking that will allow for the tracking of changes and rolling back of changes.

    Is there anything out there that does this?

    Thank You

    Daniel
    See more | Go to post
No activity results to display
Show More
Working...