Search

You searched for the word(s): userid:215697

Matching Posts

  • VS 2008 Toolbox Multiplies

    I don't know what it is, but I noticed that every time I open up Visual Studio 2008, the items in the toolbox get added to the list, although they are already there. And every time I open it, the list gets longer and longer unless I delete them individually. I removed all third party applications. Its still doing it. If I let it go, the items in the list could be so long, that its just takes a while to scroll through it... And its just the same controls but repeatedly being show over and over
    Posted to Visual Studio 2008 (Forum) by perez6558 on 9/16/2008
    Filed under: toolbox, visual Studio, Visual Studio 2008, VS2008 SP1, visual Studio 2008 bug, VS2008
  • Re: Adding empty alt attribute inside HyperLink control

    [quote user="kipo"]Is there any way to add empty alt attribute inside HyperLink control which has ImageUrl property[/quote] Wouldn't the tooltip property equate to the alt text you are talking about? <asp:HyperLink ID="HyperLink1" runtat="server" ImageUrl="~/images/link.gif" NavigateUrl="~/Default2.aspx" Tooltip="" />
    Posted to Web Forms (Forum) by perez6558 on 8/29/2008
  • Re: Any thoughts on Enterprise security for getting connection strings??

    Your right MSBUILD is probably not the right thing. Now I'm not a security expert, but what if you were able to store the database connection strings inside the Application state variables and check for updates to the connection string once daily or something along those lines. Having a webservice to check every single call to the database will really drag performance. But once daily on application start, you go and get the new connection strings and store them in the application state variable
    Posted to Security (Forum) by perez6558 on 8/29/2008
  • Re: Enable webforms when checkbox is checked

    [quote user="Tokidoki"]I didnt want the page to refresh [/quote] use an ajax updatepanel so that there is no page refresh. http://ajax.asp.net
    Posted to Web Forms (Forum) by perez6558 on 8/29/2008
  • Re: Any thoughts on Enterprise security for getting connection strings??

    MSBUILD is meant for the enterprise environment and for having different environments such as development, test, preproduction, production, etc... And you can setup your project to compile differently for each environment... so for example setup each envrionment with.... 1. different web.config sections (such as connection strings and appsettings) 2. copy the compiled results to a different path 3. copy any specific files 4. do certain tasks 5. assign version number 6. the list goes on and on...
    Posted to Security (Forum) by perez6558 on 8/29/2008
  • Re: Where can I put code in the Page that runs last after everything (except page_unload)

    You want to put code in to log something after everything... The PreRender event is used to make any changes to the page just before the page gets rendered or turned into HTML. Its usually meant to make any changes to the way controls look. But you can use it to log to a database as well. After this point, alot of access to certain variables may be blocked out. This event will always be one of the last events and has full access to all page objects and variables. And always gets hit.
    Posted to Web Forms (Forum) by perez6558 on 8/29/2008
  • Re: Advice Needed! asp:DropDownList ddlCountries 'Is not declared'

    Well, basically the control is not in the template directly as you have it in your code. One way to find out where the control is at, you could assign an event handler to the drop down list declareatively as so... (my code could be off syntactically....) <asp:TemplatedWizardStep ID="Step1" runat="server"> <ContentTemplate> ...other content here <asp:DropDownList runat="Server" ID="ddlCountries" AutoPostBack=True SelectedIndexChanged="testEventHandler"
    Posted to Web Forms (Forum) by perez6558 on 8/29/2008
  • Re: open pdf in popup window from website

    I would probably set up a share on the remote server... we'll call it websiteshare you do this by right clicking on the folder and click on the share tab and create share (setup permissions appropriately and setup permissions on the security tab as well). Then you can access that share remotely like so... \\servername\websitehare\ Than you can save documents remotely. Setting up the permissions is key because by default the permissions will limit this. The permissions on the share have to allow
    Posted to Web Forms (Forum) by perez6558 on 8/28/2008
  • Re: How to Generate And Get value of Dynamic Server Control

    [quote user="kaushal.pathak"]how can i add dynamic control at run time and how to arrange it for designing view[/quote] http://igregor.net/post/2007/12/Adding-Controls-to-an-ASPNET-form-Dynamically.aspx
    Posted to Web Forms (Forum) by perez6558 on 8/28/2008
  • Re: Error opening Excel file: "Could not decrypt file"

    I'm not sure if this issue is related, but I had an issue with .docx and the file being corrupted coming out of a database. Take a look at this post to see if this is your problem and how I was able to get around it. http://forums.asp.net/t/1301978.aspx Also, make sure that any code that you may have that uses streams or files that closes the stream or the file. This can cause a lock on the file...
    Posted to Web Forms (Forum) by perez6558 on 8/28/2008
Page 1 of 6 (56 items) 1 2 3 4 5 Next > ... Last ยป