Search

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

Matching Posts

  • Re: Are Session variables the best practice to pass info from one form to another? | ASP.NET 2.0 VB

    Alternatively, you can assign the user a random ID#, attach that ID# to the URL string, store that same ID# in a database table along with any global variables you are trying to use with the user (after it is setup in the database, redirect the user to their custom URL). Done right, a refresh will truly be a refresh, as well as a back or a forward, as long as they don't close the browser. This can also be used to save a session if you attach it to a user id and password, or have them enter an
    Posted to Web Forms (Forum) by Oran_in_AK on 8/7/2008
  • Re: resizing asp.net form within href not working

    You might be missing some commas. try window.open(''abc.aspx?apkey="+akey+"','_new','width=200') check out: http://www.javascript-coder.com/window-popup/javascript-window-open.phtml for more.
    Posted to Web Forms (Forum) by Oran_in_AK on 8/7/2008
  • Re: Help Please Setting up a webserver

    The confusion about IIS and .net2 vs. 3.5 is understandable. The .net assemblies have not changed since 2, but the scripts they use to support 3 and 3.5 have (you can really see this if you had an AJAX page in 2 and upgraded to 3 or 3.5). The correct ASP.net version for 2, 3 and 3.5 is 2 on the ASP.net tab - no you are not going crazy, this is just the way it is. Typically to change the user authentication you would go to the Directory Security tab in IIS and Edit the "Anonymous access and authentication
    Posted to Free For All (Forum) by Oran_in_AK on 8/5/2008
  • Re: Multiline mode of textbox

    You can do what you want using Parameters. A Parameter will encapsulate text (including line breaks and quotation marks) for insertion into a database. You will have to look up how they are used for the database you are using as each has their own format. SQLServer SqlParameter Class description: http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlparameter.aspx
    Posted to Getting Started (Forum) by Oran_in_AK on 8/1/2008
  • Re: SQL and Proper Concatenation within VB

    [quote user="Gaucho"] how it would be used in a non-textbox control? [/quote] To expand: Because you are using an Internet interface, a message that is to be sent from a client to a server (such as a static drop down list box text, or selection) can be modified. Depending on your implementation in the code behind, the text used could be from a clients changed message. A good example of this is to use Firefox with its Firebug analyzing plug-in. Firebug allows you to actively modify java
  • Re: How can I copy data to/from SQL Express?

    Diane, I wish I had seen this earlier. One of my developers and myself move our development db files around from computer to computer (depending on if we are working from home or in the office). It looks like you have already discovered the process. You have to detach your database from the first machine, locate the directory the database files are stored (there should be two files - a .mdf and .ldf file, found in the Program Files directory where you installed SQL server express). After the detachment
  • Re: Previous page URL

    When you are asking for the PreviousPage Request, the assumption is that the UrlReferrer is from a different web address. Looking at it from your web space and moving from page to page, this value will be null and will give you an error. Here is some code that I have used in the past that may help you out (sorry I can not provide a better set of code, but this is a good start): HttpRequest url = this .Request; string urls = url.Url.ToString(); By setting the string 'urls' to a textbox or
    Posted to Getting Started (Forum) by Oran_in_AK on 11/9/2007
  • Re: QueryString to choose Content page by LinkButton

    Off hand I would say that using "if(!Page.isPostBack)" will only occur on a new page load. Try it without the "!" to execute the code on a button click.
  • Re: QueryString to choose Content page by LinkButton

    Just a quick question to cover a basic (and probably not relavent to your situtation), After you update your select string for the DataGrid, are you binding your data to the DataGrid with DataGrid.DataBind(); ?
  • Re: Execute javascript code

    ScriptManger will not help here since you are not using AJAX, but if you were that would be the way to execute it. I downloaded your files and looked at the code, I don't think your redirect code is the problem. If you disable all the calls to the DB it does what it is suppost to. What error are you receiving when you try to execute your code?
    Posted to Client Side Web Development (Forum) by Oran_in_AK on 10/15/2007
Page 1 of 2 (11 items) 1 2 Next >