Search

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

Matching Posts

  • Re: Why doesn't my javascript code I disable a required field validator?

    Hi BruceH, You wouldn't happen to have ServerSide validation enabled would you? if(Page.IsValid) { //Logic Here } Hope this helps. SyntaxC4
    Posted to Web Forms (Forum) by SyntaxC4 on 10/8/2009
  • Re: How to Handle wrong paths in url in ASP.Net web application

    Hi Raghuveer, Is there any particular reason why you are adding additional folder paths after the page? Wouldn't this be something better handled as a QueryString? I would suggestion checking out Routing, which is new in 3.5 (Thanks to MVC): http://www.codeproject.com/KB/aspnet/routing404.aspx Or you can look into the good ol' 2.0 url mapping: http://quickstarts.asp.net/QuickStartv20/aspnet/doc/navigation/urlmapping.aspx If you need more guidance beyond this, please try to explain what you
    Posted to Configuration and Deployment (Forum) by SyntaxC4 on 10/8/2009
    Filed under: Routing UrlMapping
  • Re: Prevent Postback until action

    Hi Rawler, If you're hoping to get the value that was entered in that javascript window back to the server-side, there is a little bit more of a work around that you will have to do. The internet is this crazy place where we host alot of "Stateless" Applications. Which means the server has no recollection of the Page in memory so it relies reading the HTML in the request in order to formulate which was sent off to the page. If you want to retrieve a value from the javascript code you
    Posted to Web Forms (Forum) by SyntaxC4 on 10/8/2009
  • Re: MenuItem Click event not fired when dynamically created

    Hi swaino, Where are you creating your Dynamic menu items? If you are creating them in any Page Event before PreRender, the items are getting re-generated on the post-back and clearing the event handler from being fired. Look at the ASP.NET Page Life Cycle to get an Understanding as to where you should be placing your code. If this doesn't get the gears started, post some code and I will be happy to assist you. Thanks, SyntaxC4
    Posted to Web Forms (Forum) by SyntaxC4 on 9/16/2009
  • Re: Regular Expression Validation Problem

    Hi manojkiean, What would be the point of validating a URL without the http:// or the .com it's not really a web address at that point. For your second question, could you elaborate a bit more on what you are trying to achieve? Digits in Regular Expression: \d - matches single digit \d{2} - matches 2 digits only \d{1,2} - matches 1 or 2 digits \d{1-30} - matches a range of 1 to 30 digits Let me know if i can be of further help.
    Posted to Getting Started (Forum) by SyntaxC4 on 8/29/2009
  • Re: Boolean

    Hi wmec In SQL 0==False and 1==True, it's similar to binary with the on and off state. In order to select a boolean or 'bit' field from the database you would use a query like so: SELECT boolean_field FROM table Hope this helps.
    Posted to SQL Server, SQL Server Express, and SqlDataSource Control (Forum) by SyntaxC4 on 6/29/2009
    Filed under: "SQL Server", "T-SQL", bit, boolean, "ASP.NET and SQL Server"
  • Re: Wizardsteps - can each step reside in a different file?

    Hi tyrrell, Yes It is possible, split your steps into User Controls and add each User control as a single step in your wizard. You can find the values from other steps by finding the last previous WizardStep and using the find control method to retrieve the value. Hope this helps.
    Posted to Web Forms (Forum) by SyntaxC4 on 6/9/2009
  • Re: RESET button in asp.net wizard control

    Hi Asif, You should be able to use the HTML input reset button. [quote user="HTML Option"] <input type="reset" id="btnReset" value="reset" /> [/quote] If that clears the entire form, then you can achieve a single page reset by creating a function that reset the different form elements. [quote user="C# Option"] protected void Reset_Click( object sender, EventArgs e) { IButtonControl btn = sender as IButtonControl; if (btn != null ) { View targetView
    Posted to Web Forms (Forum) by SyntaxC4 on 6/8/2009
  • Re: Jquery Slide Toggle

    Hi VB_Gone-Wild, Do your hidden divs start with a class which is using display:none;? or are you relying on your jQuery to toggle their state? Hope this helps. If not please post some of your code.
    Posted to Client Side Web Development (Forum) by SyntaxC4 on 6/7/2009
  • Re: How to do this with ASP.net?

    hi eric2820, This can be achieved using CSS. Please try this example: [quote user="External CSS Stylesheet"] body { background-image: url(" ../PathToImage/image.jpg ") ; background-attachment: fixed ; } [/quote] hope this helps!
    Posted to Client Side Web Development (Forum) by SyntaxC4 on 6/7/2009
Page 1 of 69 (690 items) 1 2 3 4 5 Next > ... Last ยป