Search

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

Matching Posts

  • Hosting multiple domains/sites on the same account

    I am currently with discountasp.net but I would like to host a few sites on the same account. As a few of the sites will be small information based sites and I can't justify the $50 odd cost for them to have there own accounts. What do you guys do? I like hosting with discountasp.net as they seem to keep up to date with technologies but they don't allow multiple domains per account!! Grrr.... Thanks, Al
    Posted to Hosting Open Forum (Forum) by Muller2 on 6/4/2007
  • Re: Linking a MasterPage to a web site's default.aspx - how?

    That is one possible soultion - the other would be to alter the header of the .aspx file to include the MasterPageFile attribute. Here's an example pulled from my blog ;-) <%@ Page Language="C#" MasterPageFile="~/blog.master" AutoEventWireup="true" CodeFile="default.aspx.cs" Inherits="_default" Title="Allan Muller: Blog" %> "C#" MasterPageFile= "~/blog.master" AutoEventWireup= "true" CodeFile= "default.aspx.cs" Inherits= "_default" Title= "Allan Muller: Blog" %>
  • 'Hold' section of screen?

    Hi, How can I 'hold' a seciton of the screen (in this case, just above the taskbar) so that applications when fully maximised don't cover up or go behind my win form? I have created a picture of what I mean here: If anyone could help me, or point me in the correct direction I would be much appriciated. Many Thanks, Muller2
    Posted to C# (Forum) by Muller2 on 9/4/2006
  • Re: C# Authentication

    Hi agfying! I have tried that change and I still am shown the same outcome username match but password didn't match!False even though the strGivenPassword hash is identical to the strStoredPassword hash. Do you know of any other reason why this isn't working? Or does anyone else know why? thanks for your help Al
    Posted to Security (Forum) by Muller2 on 3/3/2006
  • C# Authentication

    Hi, I have been working on a authentication script today and I am trying to convert this vb.net script into c# and make sure it works correctly. Here is the VB.net code: Function CheckCredentials(Username As String, Password As String) As Boolean objConn.Open() objCmd = New OleDbCommand("SELECT Salt, Pass FROM Users WHERE Username=@givenUsername", objConn) objCmd.Parameters.Add("@givenUsername", Username) objDR = objCmd.ExecuteReader() If Not objDR.Read() Then Return False Else Dim strSalt As String
    Posted to Security (Forum) by Muller2 on 3/2/2006
  • Re: export database records to tab delimited file. asp.net/vb

    Does anyone have this code in c#? It would be incredible handy! Thanks Muller2
    Posted to Getting Started (Forum) by Muller2 on 10/19/2005
  • Q: Image upload to server or db? Which is best?

    Hi, I just have a quick question - Is it better to upload an image to the Web Server and store the actual file on the server or would it be better to upload the image and store it within my MS SQL database? I am looking to produce a solution that can cope with handling up to several thousand uploads/requests. Does anyone have any personal experiences that they would like to share? Thanks, Muller2
    Posted to Getting Started (Forum) by Muller2 on 10/18/2005
  • Re: Convert to int??

    I solved it! cmdInsert.Parameters.Add( "@Mobile_Number", Convert.ToInt32(txtMobile_Number.Text) ); Thanks Al
    Posted to Getting Started (Forum) by Muller2 on 5/25/2005
  • Convert to int??

    Hi, I have the code below but I need to convert it into int as the database field is an int. I think it will be converted by one of these Int32.Parse() or Convert.ToInt32() but I am unsure how to exactly change my tag to include the correct syntax. cmdInsert.Parameters.Add( "@Mobile_Number", txtMobile_Number.Text ); If anyone could help me out that would be great :P Thanks, Al
    Posted to Getting Started (Forum) by Muller2 on 5/25/2005
  • Query Database time??

    Hi, I am looking to display the time that it took to query my database and return the results. Just like Google do on their search results page and on this page ( http://www.corsasport.co.uk/board/f...play.php?fid=12 ) right at the bottom. I have searched google with no luck and wondered if any of you guys knew of away to do this? Page: Asp.net/C# Thanks very much for any help. Al
Page 1 of 1 (10 items)