Search results for query: *

  1. I

    Migrating Classic ASP Authenitcation & Authorization to .NET Membership

    Hi All Some Background: I have an old website running fine in Classic ASP with large customer base registered onto the site. The current site allows users to have their own user name(unique) registered against an ID assigned to them. They can change the User name later as well provided it is...
  2. I

    Question Saving domain name in database

    Hi All, I have an application that Insert, Update and delete some rows in a table of SQL database wchich is to be used by certain specific users within the network(it uses windows authentication to restrict other users). The table has a column with update login whose default value is SQL login...
  3. I

    Question Dynamic image load

    Hi All, I have a web page that accepts parameter and based on the parameter value it displays the image(Image is saved in project images folder with parametername.jpg) Now what i am doing is, i am reading that parameter from query string and assigning it to a hidden value. then on aspx page i...
  4. I

    Handle error or exception when host is down

    Hi in some part of my code i am forwarding the user to a different page. eg { Response.redirect("www.abc.com") } Now i want to check if the website is available and if not then user should not see page not found, rather i should keep him on my website only, showing a gracefull error...
  5. I

    Check for Parameters from Query String

    Hi John Thanks for your reply. i think this count = 0 will check for value of parameter. but what if the parameter itself is not there. i am already doing something similar to your response like If parameter = Nothing Then Response.Redirect("../Web/Error.aspx?Error=Parameter...
  6. I

    Check for Parameters from Query String

    Hi All I just figured out a way. I am doing exception handling for System.NullRefrenceException. as soon as someone hits the URL, without the parameter the page throws Null refrence exception as parameter is not there. So I am catching this exception and redirecting it to the standard error page...
  7. I

    Check for Parameters from Query String

    Hi i have a page that displays an image based on the parameter value coming from the previous page. i want to restrict the user from manually manupulating the query string and user should not be able to view the page eg i have a page that should always have a URL as...
  8. I

    Question Spliting Dataset in 3 columns

    Hi I am using a web-service that is returning me result in form of a dataset. Now this dataset i am displaying in form of a Tree. the dataset results in arn 15 values which i want to display in 3 columns instead of one long list. Any Idea how to display in 3 columns??
Back
Top