Search

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

Matching Posts

  • Re: How to find url on dynamic page

    If you aren't sure what parameter name to pass, try looking in the source file of AdvancedSearch.aspx on your site where you're passing the data to. Search for the text "querystring". Also take a look at the following: http://infosystemspro.net/Tip0003.aspx http://forums.asp.net/p/1048679/1485666.aspx The latter may have the answer you're looking for... (Replace & with & in the parameter names) Tto see the full text of a hyperlink you can always right-click the link
    Posted to Web Forms (Forum) by KelseyThornton on 11/19/2009
  • Re: How to find url on dynamic page

    Did you try looking in the codebehind file? This will (probably) be AdvancedSearch.aspx.cs or AdvancedSearch.aspx.vb Look in there for querystring as well.
    Posted to Web Forms (Forum) by KelseyThornton on 11/19/2009
  • Re: How to find url on dynamic page

    Hi. Looks like the criterea you can have are as follows: max%20price location photo city Ads%20posted%20by and then also Ads%20for%20the%20last%20day Ads%20for%20the%20last%20<number>%20days (replace <number> with an integer number of days) so - you should be able to use: ?location=<yourlocation>&amp;city=<yourcity>
    Posted to Web Forms (Forum) by KelseyThornton on 11/19/2009
  • Re: Printing from server to a local printer

    As a rider to this (as I've been searching about how to do this myself. I thought I'd add the code snippet which has (eventually) appeared in the MSDN framework (VB): Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ' Define the name and type of the client scripts on the page. Dim csname1 As [String] = "PopupScript" Dim cstype As Type = Me.[GetType]() ' Get a ClientScriptManager reference from the Page class. Dim cs As ClientScriptManager
    Posted to Web Forms (Forum) by KelseyThornton on 10/30/2009
  • Re: VWD 2008 debugging won't start

    Update: If I open the website using the file system instead of via IIS, it will start the debugger. This points to either a setting in IIS (which I haven't changed as far as I know), or in some between VWD which hsa been "improved"in the 2008 version compared to the 2005 version...
  • VWD 2008 debugging won't start

    Hi folks. Ever since I upgraded VWD 2005 to VWD 2008 I have been unable to start the debugger. It complains that "The project is using a web site that is configured to use a specific IP addres" If I look at the help it tells me that this occurs if my web site is configured with a specific IP address in IIS. If I look in IIS7, I see that it is using "All unassigned". I'm pulling my hair out here...
    Posted to Visual Web Developer 2008 Express (Forum) by KelseyThornton on 6/21/2009
    Filed under: VWD Express 2008, Debug
  • Re: logout functionality

    If you are using Visual Web Developer (or I assume Visual Studio), you can create a logout "button" by dragging the "Login Status" tool onto your page. Then you select the "Logged In template" in the dropdown box. Now double-click on the word "logout", and a new proc is generated called "...LoggingOut...". You can put yourt cache-clearing code in here. I use (nested) master pages in my site so that the login controls are always there and I only have
    Posted to Security (Forum) by KelseyThornton on 5/13/2009
  • Re: mail problem

    you need to select the correct character-set when sending your message - I don't have a clue (sorry) which one it is for arabic. You might also need to use some setting to use right-to-left formatting (if I remember correctly that Arabic is read right-to-left!) I think you might also need to seledt format of html instead of text.
    Posted to Localization (Forum) by KelseyThornton on 4/27/2009
  • Re: Using Try Catch Finally

    Whether to use one or many try-catch clauses depends on what you want to do. If you want to roll-back all modifications if one thing fails, then you should think about using a single try-catch. If you want to keep any modifications that have been done before the error then you might want to consider using several. If you simply want to read data, then I would suggest a single try-catch, if the result depends on the outcome of *all* the data you are reading. If you can use the output of *some* of
    Posted to Architecture (Forum) by KelseyThornton on 4/26/2009
  • Re: AdRotator Question

    I think that the simple answer is "you can't'. The AdRotator control is designed to show *random* ads, with an optional weighting factor. What you want is anything but random... One possible solution would be to have a databse with a list of keywords, wth a link to one (or more) images. If you find a keyword in your table you display the matching image(s).
    Posted to Getting Started (Forum) by KelseyThornton on 4/26/2009
Page 1 of 23 (227 items) 1 2 3 4 5 Next > ... Last »