Search

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

Matching Posts

  • Re: Regular expression question

    Hi Guys these were all really helpful, Nitin yours was the most simple so I used it..... Cheers Pete
    Posted to Web Forms (Forum) by peter_heard01 on 11/13/2009
  • Regular expression question

    I need a regular expression that makes sure the user types a url into a webform with either a http:// or an rtmp:// prefix but cannot seem to get one working. I tried: ^http://|rtmp:// ^http://*|^rtmp://* But they didnt work. Can anybody help? Much appreciated Regards, Peter Heard
    Posted to Web Forms (Forum) by peter_heard01 on 11/3/2009
  • Have to reset security on website when change header image

    Hi, we are having an issue on a website when we change a header image the security permissions arent carried across necessarily. Is there a way to create a folder using .net that atumatically applies the root permissions to every file within it when files are swapped out? Has anyone got any links to good articles that show how to reset permissions through .net code? Regards, Pete Visit Our Sites Unabridged Dictionary Learner's Dictionary Word Central for Kids Premium Services Unabridged Dictionary
    Posted to Security (Forum) by peter_heard01 on 10/19/2009
  • Re: Visual Studio Enters Loop On Close - STUCK!

    Right afte much thought Ive solved this. I used Sysinternals filemon to look at what was going on and it looked like it was trying to open something in the C:/program files/microsoft/visual studio 8/. Well all I did was to simply re-create the sln file and re-add all of the csproj [that realte the to the projects] back in. I binned the old sln. Hope this helps someone.... Pete
    Posted to Visual Studio 2005 (Forum) by peter_heard01 on 9/14/2009
  • Re: Linkbutton in BulletList

    What do you mean exactly? you could do it with css at the client end, that would be the most configurable option. So just have 3 classes lnkBtn {} text{} hpLinks {} and then set the css class on the bulletlist control in your markup or codebehind.
    Posted to Web Forms (Forum) by peter_heard01 on 9/11/2009
  • Visual Studio Enters Loop On Close - STUCK!

    Heres a nice little problem that puts a stop to any sort of friday afternoon activity! Ive tried to close my visual studio [hit the rex x] and it enters an infinite loop. I can see from the status at the bottom the message 'Getting file Default.aspx from the web'. Ive completely taken a copy of the site to a new location and opened that and still does it. Then Ive done a clean and rebuild and the same problem and then I have deleted all references and re-added thema and I m getting the same
    Posted to Visual Studio 2005 (Forum) by peter_heard01 on 9/11/2009
  • Re: How to dynamically add controls to a page generating postback

    No you cant regsiter server side controls using javascript. Javasript sits on the client window and can only access client rendered elements. To have a drop down box use the and populate it with listitems (in markup or in codebehind). <asp:DropDownList> <asp:ListItem test="" value=""/> <asp:ListItem test="" value=""/> </DropDownList> This markup placed in your aspx file will render as pure html and then you can access it using javascript
  • Able to change config for different configurations

    I have an applicatio when I develop locally I point at the testing database. Then I want to switch it over and point it to the dev database before I release to dev. Is it possible to have circumstantial configuration entries per situation? So that I dont have to re-point all the configs manually? I know I can do it in the deployment project but I dont actually want to deploy it yet I simply want to point the app at another database/set of folders... Any help much appreciated Cheers Pete
  • How to use a search string with inline parameterd code

    Hi Guys, i posted in the msdn forum but no one could shed any light on this: I am having some issues sending a varchar through to sql using an inline script and parametered values for a seach query. The query works when i dump it into management studio but only if I declare the parameter @parameter as a varchar(50). For example: this works in management studio: //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// declare @keyCommentWord
  • Re: How to use a dataset as a paging datasource.

    Hi, thanks for the reply we actually found that what we could do is access the default view of the table that we wantec to bind to: pds.DataSource = reportedComments.Tables[0].DefaultView Cheers Pete
Page 1 of 8 (79 items) 1 2 3 4 5 Next > ... Last »