Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pfontyn

    Mayday mayday, .NET is eating my code!

    One thing I have noticed about the .Net IDE is that when you are working with web forms, if you switch to design view you need to let the designer render all the controls on the page before you switch to HTML view. It's not totally consistent, but on pages with many controls, I have found that...
  2. pfontyn

    MSSQ7 - How apply the new default value to old rows retrospectively?

    You could set the default value for the column and change the table structure to not allow NULLs. If the column is still NULLABLE SQL will allow the NULLs to remain.
  3. pfontyn

    Server.URLEncode from a Win32 app

    I have a Win32 app that needs to gain access to the HttpServerUtility Server.URLEncode and Server.URLDecode methods. Basically, what I need to do is something along these lines. public string EncryptString(string val) { Page objPage = new Page(); string strReturn = "&quot...
  4. pfontyn

    Changing data from .ttx file

    I have a report that I created in Crystal 7 which the client changed the requirements for. The report is called from an ASP page which passes in a ADO recordset generated by a VB component. The problem is a can't seem to get Crystal to recognize a new ttx file with updated data types. Is there...
  5. pfontyn

    TCP/IP Sockets - can't connect

    As well, you might need to adjust the time-out settings. To do this, go to the Tools menu in the Enterprise manager, select options and go to the Advanced tab. There are fields there that you can use to adjust the amount of time to wait for a response. I have found that the default parameters...
  6. pfontyn

    Can you check the IIS setting in from an ASP page.

    This may help your de-bugging You can quickly see all the server sent settings to the browser by printing the ALL_HTTP server variable. <% Response.Write Request.ServerVariables(&quot;ALL_HTTP&quot;) %>
  7. pfontyn

    User session has expired error

    I know that there are numberous posts in this forum concerning this particular error, but I do seem to have a problem which is somewhat unique. Basically, I have a web application which uses Crystal Reports 7 to display data from a ADO recordset. Every report is located in the same virtual...

Part and Inventory Search

Back
Top