Search

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

Matching Posts

  • Re: I am not understanding concept in asp.net for query string.

    Hi, Querystring is not a solution for this kind of application because it can see in the address bar and also it can copy and paste. There are many option available insted of using querystring. If you realy want to use the query string, pass the album id and user id as a single string using encryption method(that would contain a set of character and not exact values) Then the target page check the user id to varify the user. Here I assume you use the userid to identify the user. But you can use any
    Posted to Web Forms (Forum) by chandana on 9/24/2009
  • Re: Images and buttons

    I think the problem is you are not correct the image path. Please varify the path and that path should be a relative path that mean in your path does not include a local hard drive letter it would be ~/Image/test.jpg or something. Thanks.
    Posted to Web Forms (Forum) by chandana on 9/24/2009
  • Re: Automatically back to login page afte 5 minutes idle

    Hi, You have to first make some configuration to your web server 1. Set the session expiry time to 300 second then you need application level change. 1. Add a session variable when you logging to the page. Ex- Session["Username"]=Login name; 1. set your page refresh every 5 minute. (As I remember there is a Javascript exist to refresh the page) 2. Each page loading check whether your session variable exist. And if it null or empty redirect the page to login page. Ex- if (Convert.ToString
    Posted to Web Forms (Forum) by chandana on 8/14/2009
  • Re: text field validation

    if you use AJAX tool kit it will easy for you. Because it can configure to enter only character which you required. Check this URL- http://www.asp.net/AJAX/AjaxControlToolkit/Samples/
    Posted to Web Forms (Forum) by chandana on 8/14/2009
  • SMS simulater

    As I know there are two types of SMS sending method available; Using SMS gateway and using GSM/GPRS modem. My Question is, is there any SMS simulater software available for sending SMS within same computer for testing purpose.
    Posted to Free For All (Forum) by chandana on 7/8/2009
  • Re: Input String not in correct format

    You have experiance this error your passing value to conver to integer not a number. That may be a comma seperater, space in middle of the number, etc. But I connot say exatly. Debug the code line by line and determine the exact problem.Then find the solution. That is the way you can avoid this problem. Thare is another method to use tryparse() method. but if you required this integer value (may be it has some comma) that method never return if it not in correct format like you use some error handling
    Posted to Web Forms (Forum) by chandana on 6/9/2009
  • Re: RadioButtonList forecolor is not changing

    that may be overridden problem. check whether the control override the style by some css or some skin. you can add new radiobuton list near to your list and check whether it work. then compare with previous one.
    Posted to Web Forms (Forum) by chandana on 6/9/2009
  • Re: Page.findcontrol not working

    [quote user="EvilPaladin"] Looks like this? if (!page.ispostback)then createRB() End if [/quote] you have to call this function same as you call the function to create the dynamic control. If you don't have any other operation do not need to use if else part.
    Posted to Web Forms (Forum) by chandana on 6/9/2009
  • Re: Help on regular expression validator

    use following regular expression \d{3}-{1}\d{3}-{1}\d{2}
    Posted to Web Forms (Forum) by chandana on 6/9/2009
  • Re: Regular Expression for Valid path

    Do you use only above two path? then you'd better to use custom validation control.
    Posted to Web Forms (Forum) by chandana on 6/9/2009
Page 1 of 31 (301 items) 1 2 3 4 5 Next > ... Last »