Search:

Type: Posts; User: SeanGrebey

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    75

    File Permissions

    I currently have an application I wrote for a company to manage their projects. We've developed it enough over time that it has become fairly useful for them, and other companies in their industry...
  2. Replies
    11
    Views
    326

    VS 2010 Re: Page Formatting

    Lot's of weird stupid crap, like image buttons inside of update panels causing the page to crash, sessions logging out whenever you click on a link, jquery components erroring out. Our staging site...
  3. Replies
    11
    Views
    326

    VS 2010 Re: Page Formatting

    IE10 is a nightmare. I don't know how many support calls I hear our IT help desk guys get about things on our site not working correctly and the answer is always put it into compatibility mode...
  4. Re: Access Denied on File Delete

    SOB ok I figured it out. I feel pretty stupid now.

    This issue is with this line:


    oSQL.GetFileName(strFileName, gvFiles.DataKeys(e.CommandArgument).Value()) returning an empty string, so...
  5. Re: Alternative to System.IO.File.Delete?

    SOB ok I figured it out. I feel pretty stupid now.

    This issue is with this line:


    oSQL.GetFileName(strFileName, gvFiles.DataKeys(e.CommandArgument).Value()) returning an empty string, so...
  6. Re: Alternative to System.IO.File.Delete?

    That's why you assign access to the AppPool Account to the specific Folder security options (that is in the file system I have assigned Network Service to have full control over that folder, and have...
  7. Re: Alternative to System.IO.File.Delete?

    Sorry, the Delete button embedded into each row and fired with a RowCommand.


    <asp:GridView ID="gvFiles" runat="server" AutoGenerateColumns="False" Width="100%"...
  8. Re: Alternative to System.IO.File.Delete?

    When I try to delete within the RowCommand, I get an Access Denied Error, outside, no Access Denied Error.

    i.e. on the same page:

    This works where txtTestDelete.Text is hardcoded to...
  9. [RESOLVED] Alternative to System.IO.File.Delete?

    I'm having an issue (in ASP.NET but this is more of a general VB.NET question) where System.IO.File.Delete works on a page outside a gridview but not inside of it. I'm a bit tired of trying to figure...
  10. Re: Access Denied on File Delete

    Huh almost sure it is the gridview now. Thought maybe it was the built in delete, so did a button instead and named the command "deletefile" but that didn't resolve it. So I tried dropping the one...
  11. Re: Access Denied on File Delete

    Strangely this may be my issue and I don't know why.

    I tried moving where the documents are to just C:\Documents\ACSDocs\ on the server, gave it rights to Network Service, dropped a button on it...
  12. Thread: Modal Page

    by SeanGrebey
    Replies
    6
    Views
    282

    Re: Modal Page

    The AJAX toolkit has one too, but, well, the toolkit blows all around...
  13. Re: Access Denied on File Delete

    Protected Sub gvFiles_RowCommand(sender As Object, e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles gvFiles.RowCommand

    ' Finish Me
    ' Restrict users to...
  14. Replies
    12
    Views
    394

    Re: Using MasterPages???

    You sure on that? Granted it is been a while but I thought having a head content section didn't come until later versions.
  15. Re: Access Denied on File Delete

    It already has full control. Something weird is going on, and I'm not sure what. I'm wondering if it has something to do with the folder it is in. I didn't really know IIS 7 when I loaded this guy...
  16. Replies
    12
    Views
    394

    Re: Using MasterPages???

    2008 I think you have to drop your own Content sections on the Master Page. But it still should be as easy as creating a new page then and somewhere on the lower right is gives you an option to use a...
  17. Replies
    12
    Views
    394

    Re: Using MasterPages???

    Create a Master Page. Put a Content area on it (since 2010 I think it defaults to a Header Content and a Content1, maybe 2012).

    Create a new Web Page, it will have an option to select master page,...
  18. [RESOLVED] Access Denied on File Delete

    I have an application that allows users to use a FileUpload object to upload files to a directory on the web server. The upload part works fine, but if they later try to delete the file they get an...
  19. Re: IE 10 (or what in god's name is this mess)

    Lot's of weird stupid crap, like image buttons inside of update panels causing the page to crash, sessions logging out whenever you click on a link, jquery components erroring out. I have a list...
  20. Replies
    4
    Views
    367

    Re: Pie chart in asp?

    Was going to suggest this. MS Chart is fairly simple to use. No reason to remake the wheel.

    Sean
  21. Re: IE 10 (or what in god's name is this mess)

    The amount of issues we are having with it is staggering.
  22. IE 10 (or what in god's name is this mess)

    Anybody have any advice for dealing with user's using IE10? I mean it seems to literally break half the functionality on the site I am working on unless you run it in compatibility mode.
  23. Replies
    43
    Views
    741

    Re: Reading from XML

    What about 29 and 28?
  24. VS 2008 Re: How to prevent duplicate entries in Vb.net using Mysql database

    If you don't want to/can't for some reason use built in MySQL, you can always do a loop where you check to see if empid exists in the database before you insert, and you keep looping and incrementing...
  25. VS 2008 Re: I'm looking for fresh Idea's on how to setup a SQL database

    Get a copy of their database, restore it locally, write an SSIS package to transfer the data from it into your new database?
  26. Replies
    2
    Views
    298

    VS 2008 Re: How to hide gridview but still access?

    Access it where? Visible=false and you can still access it in code behind with no issues.
  27. Visual Studio 2012 Auto-Modifying HTML and breaking application

    I am using a custom control. In one of the places I use it, every time I save Visual Studio modifies it, which breaks my application. I am beyond frustrated. Anybody know what causes it or how to fix...
  28. VS 2008 Re: Help with File Upload and Deployment

    SO when you click Save, on the screen, your file upload control has a file name displayed in it, but when get to the point in the code to Save it is empty? A postback shouldn't clear a FIleUpload...
  29. VS 2008 Re: Help with File Upload and Deployment

    Define "Not Working". That's not very helpful. Does it throw an exception? If so, what exception? Is the FIleUpload1.FileName field empty? If so, where are you opening the FileUpload.

    Here is...
  30. Replies
    2
    Views
    207

    Re: Depreciation Question

    With just a quick glance, I'd say the problem is you are looping until you reach zero, but if you are depreciating based off of 1/nth each pass, your number will always approach zero but never reach...
  31. Replies
    1
    Views
    336

    Re: Modal Popup Drag/Drop

    This javascript in the page_load resolved it:


    function setBodyHeightToContentHeight() {
    document.body.style.height = Math.max(document.documentElement.scrollHeight,...
  32. Replies
    1
    Views
    336

    [RESOLVED] Modal Popup Drag/Drop

    SO I created a Panel to use to drag my modal popup, but any movement of it when you release the mouse it returns back to it's original position. ANy idea what causes this behavior and how to stop it?...
  33. Re: Dynamic drop down list passing parameters

    Probably lot's of ways to do it, e.g.:

    Dim MyID as int32= Convert.ToInt32(Replace(DirectCast(sender, DropDownList).ID,"ddlAnswer",""))

    I think that will work, basically strip your ID back out...
  34. Replies
    22
    Views
    897

    VS 2010 Re: AJAX Advice?

    Don't? I'm beginning to despise it myself. Tired of using the toolkit and ending up with output that looks like this. It is just too flaky, especially when you nest controls.

    97181
  35. VS 2010 Re: Open new form close current form

    Stop trying to compare it to VB6 and you will sleep much better at night. Just because you could get away with something doesn't mean you should. That can lead to all sorts of issues down the road...
  36. VS 2010 Re: Open new form close current form

    That should be apparent by the fact it isn't working. Events fire based on different actions. Put things in their proper place. The couple extra lines of code aren't going to hurt you to make sure...
  37. Re: Passing variables from form to form

    Is class file some type of Form? You seem to be showing barely related bits of code here.
  38. Re: Help Please [Practice for an assessment]

    You defined:

    Dim French, German, Spanish As Integer

    But then try to set their values to words:

    If FrenchScore <= 40 Then French = "Passed" Else French = "Failed"
    If...
  39. VS 2010 Re: Open new form close current form

    That's not remotely the code he posted for you...

    You are trying to do everything in one event, he showed you how to do it with three events...
  40. Re: Passing variables from form to form

    Where are they defined? YOu are passing them into the constructor, but they have to be coming from somewhere you haven't posted in the code you've shown...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4