Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. brage98

    Using <%= aspnetControl.ClientID %> in javascript

    Thanks again for the reply, and the links. Yes I agree; I think defining the variables before loading up the JS is the better idea. I'll try and see if I can use prototype to make it more clear as to what the JS variables should be prior to including the js in an aspx page. As for view-source...
  2. brage98

    Using <%= aspnetControl.ClientID %> in javascript

    Thanks for the reply. I'm trying to keep the aspx page as JS-free as I can. I like the "set up your webserver" solution. Question #1: If JS is parsed through IIS (ASP server), would the user be able to view the code? Question #2: How do I go about that? I'm currently using IIS7.0 How would I...
  3. brage98

    Using <%= aspnetControl.ClientID %> in javascript

    This must be a dead simple one. When I put my javascript in MyPage.aspx, I can access server controls and variables by putting them inside <%= %> When I move this javascript out of MyPage.aspx and put it in MyPage.js, <%= %> makes not a lot of sense. What am I doing wrong. Here's an example...
  4. brage98

    displaying PDF in email body

    I have no solution for this except the following work-around: The file I was planning to displayin the body of the email is the output of an SSRS report in MHTML format (.mht file). Since I couldn't find an easy way of translating .mht to .html, I've decided to simply call the ssrs twice to...
  5. brage98

    displaying PDF in email body

    k, thanks again for the follow up. As an FYI, with a "system.Net.Mail.MailMessage" object you can 1. specify the body of the message to be of html type 2. set "headers" From 1 and 2, and given that system.Net.Mail.MailMessage is used by System.Net.Mail.SmtpClient, I'm almost certain...
  6. brage98

    displaying PDF in email body

    Hi there, Thanks for the reply I'm sure there's a way of doing it. SSRS does it some how: When you subscribe to a report, and ask for mhtml format, the email that is sent out to you displays the report right in the content. Also, in outlook, when inserting a file, you have the option of...
  7. brage98

    displaying PDF in email body

    I have a code that kinda does what ssrs-subscription can do. Except, users are asking to view the actual attached-report in the body of their emails. So say I'm attaching a .pdf or .mht file to the email. Users want to be able to see these files right in their email. I've tried the...
  8. brage98

    Adding references between multiple projects in a solution

    Too bad, well thanks for your reply then. I guess I have to use a build tool then. I will update this post if I do find a way to force the dlls through
  9. brage98

    Adding references between multiple projects in a solution

    hmmm, yeah that's what I'm doing right now... but I think there's gotta be a better way. I wanna have a central/common project with all the .dlls and whatever project that references this common project should automatically be updated with all the external dlls used by the common project, if you...
  10. brage98

    Adding references between multiple projects in a solution

    Hey Thanks for the reply... My problem is this: I build Project A (That has A.dll and external.Dll) My project B has a reference to project A only A.dll is added to project B. "external.dll" doesn't get copied over to project B.
  11. brage98

    Render RDL through powershell

    I have the following code that properly renders an RDL to a file. I then email the file as an attachment through an email. The Question Users want to be able to see the content of the attachment in the body of the email as well. How would I go about rendering the output file (which is usually...
  12. brage98

    Adding references between multiple projects in a solution

    I have 3 projects in my solution: Project A Project B Project C Project C references Project B Project B references Project A Project A has a "NewExternal.dll" reference. Naturally when I build Project C, I expect, B, A and "NewExternal.dll" be added to project C. Unfortunately...
  13. brage98

    Delete Formula Array through VBA

    k, thanks for your help... Turns out I was off in my range selection (off by 1). Once I found the correct range, I tried the following and it works: wsIndexData.Range(wsIndexData.Cells(2, 1), wsIndexData.Cells(500, 5)).FormulaArray = Null cheers!
  14. brage98

    Delete Formula Array through VBA

    hey, thanks for the reply rng.Clearncontents doesn't work because I get the "You cannot change part of an array" error as for your first suggestion, do you mind posting a simple code-example please thanks!
  15. brage98

    Delete Formula Array through VBA

    We have an excel sheet with 4 or 5 different FormulaArrays. Now we have to (why? long story, we just have to) remove this formulaArray (I need to repopulate the same region with some new data) The process of deleting the formulaArray needs to be automated through vba code (why? again, long...
  16. brage98

    Why Logshipping and Full/Diff backups work without breaking one anothe

    Thank you sooo much for the reply! So if I’m not mistaking, following scenario holds: 10:30 am: FULL 10:45 am: START LOG SHIPPING: 11:00 am: Log #1 = Change #1 11:15 am: Log #2 = Change #2 11:20am: DIFF BACKUP #1 = Change #1, #2 Log is marked with the Diff Backup Diff has the ID of...
  17. brage98

    Why Logshipping and Full/Diff backups work without breaking one anothe

    I understand we can setup log-shippings and let it roll. While the log shipping is going on, we can make full-backup and Diff backups without breaking the logshipping?!! It's awesome and I love it. I'm super curious to know why though?! From what I understand, when we make a full/Diff backup of...
  18. brage98

    Report Subscription sends an email once and fails afterwards

    We are just moving to a new windows server 2008, hosting SQL-Server 2008 and Reports. 1. "E-mail Settings" is setup to use a remote smtp server (the server is in the same network as our new server) 2. The report-server is configured for dbmail (I've used EXEC msdb..sp_send_dbmail and it does...
  19. brage98

    Mirroring...

    We have a little powershell script to take care of this. To make the script more robust so we can re-run it and re-use it, I'm trying to check to see if the database I'm trying to mirror already has a partner... Something like: IF (Principal Database has Partner) Alter Database [TheDataBase]...
  20. brage98

    FTP through C# generates NO BATCHES FOR TRANSMISSION error

    oh sure. I was just trying to get the thing going first. Thanks for thinking this through with me ;-)

Part and Inventory Search

Back
Top