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 strongm 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: *

  • Users: neomax
  • Order by date
  1. neomax

    SSL certificate & sessions

    Imagine you have a site that uses sessions at www.example.com, you don't have your own IP/SSL certificate so you use a shared SSL certificate at https://secure.example.net/example.com/ . How would you make sure sessions work on both the HTTP and HTTPS site.
  2. neomax

    Need script for searching(searche engine) for files in folder

    Hello, everybody! Need script for searching(searche engine) for files in folder, if you know where I can get an idea of that, please give me a link:)
  3. neomax

    search engine form is not working with "Enter" hit

    <form name="form1" id="form1" method="post" runat="server"> <asp:textbox Columns="30" ID="txt34" MaxLength="25" runat="server" /> <asp:button ID="btnSearch" runat="server" Text="Search" onclick="search_Buttonclick" /> <br> <asp:radiobutton id="rad1" CssClass="smal"...
  4. neomax

    search engine form is not working with &quot;Enter&quot; hit

    Hi, everybody1 I have search engine is working if it submitted by click the button, but not by hit the "Enter" on keyboard What is the reason, ? Im newbie in ASP.NET, please help me take action and fix it.
  5. neomax

    Delete the expired date

    Thanks a lot for traingamer !! Yes, the CLDate not was defined like a Date
  6. neomax

    Delete the expired date

    Hi, Everybody! I make query for the deleting data with expired date on my database when the user call web application, DELETE FROM Table WHERE CLDate < date(); It is working fine, when delete date that are "<" then today date, but not !!! matter what is the year!! For Example: if exp.day...
  7. neomax

    Error Microsoft JET Database Engine (0x80004005)

    the error "Microsoft JET Database Engine (0x80004005) The search key was not found in any record. " Some time occcured in my .asp application. It's fixed after action : Tools-->Utilities-->Compact and Repair Database. But after submit the form ( update data in DataBase) occured again. Please...
  8. neomax

    Problem with System.InvalidCastException:

    Exception Details: System.InvalidCastException: Cast from type 'DBNull' to type 'String' is not valid. Line 313: end if Line 314: publishername = "N/A" Line 315: if rs.item("publisherid")>0 then publishername = rs.item("publishername") Line 316: articleid=rs.item("articleid") Line 317: %>...
  9. neomax

    asp to asp.net

    I am gettign this error while converting an asp application to asp.net so it's not has a syntax error, but on out put is like this The closest chapter to you is System.__ComObjectSystem.__ComObjectSystem.__ComObject System.__ComObject System.__ComObject System.__ComObject Website...
  10. neomax

    Error with VB &quot;End of statement expected.&quot;

    I've right some code for ASP VB, and now I go with that code to ASP.NET (.aspx), and errors shows at moment! So, please help me , please!! Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and...
  11. neomax

    How to convert (copy) data from Excel file to table in .mdb (MS Access

    Is it possible to convert or copy data from Excel file to table(s) in MS Access 2003 database (.mdb)??? If it, then how??? Thanks :)))
  12. neomax

    cannot connect server(local)

    thanks gmmastros , but I find the solution!! new SqlConnection("server=localhost,PORT; database=web1.dbo; trusted_connection=yes;"); PORT- port for your server( in my case I use port for TCP\IP) thanks))
  13. neomax

    cannot connect server(local)

    Hi, it so strange problem!! I create new databases and tables, managing them from MS VisuaL Studio and SQL server interface tool, but can't use them when call to it from application. On conn.Open() the compiler show an exception "An error has occurred while establishing a connection to the...
  14. neomax

    problem with file .ascx

    erorr is Parser Error Message: Unknown server tag 'asp:'. Source Error: Line 42: </td> Line 43: <td> Line 44: <asp: RequiredFieldValidator Line 45: ControlToValidate="UserEmail" Line 46: Display="Static"
  15. neomax

    problem with file .ascx

    hi, I have 2 files aspx and ascx and compiler return erorr, please help me to resolve that problem login.ascx <%@ Control className="login" %> <%@ Import Namespace="System.Web.Security " %> <script language="C#" runat="server"> void Login_Click(object sender, EventArgs E) { // ...
  16. neomax

    erorr in global.asax content

    hi, that global.asax is for authentication aspx page, but compiler return erorr, please check it <%@ Application Language="C#" %> using System.Security.Principal; using System.Web.Security; protected void Application_AuthenticateRequest(Object sender, EventArgs e) { //Fires upon attempting to...
  17. neomax

    web forms authentication

    thanks adamroof, you show me the way, the reason is that protected HtmlInputControl UserEmail; protected HtmlInputControl UserPass; not protected HTMLInputText UserEmail;)))
  18. neomax

    web forms authentication

    it's not helps Compiler Error Message: CS0246: The type or namespace name 'HTMLInputText' could not be found (are you missing a using directive or an assembly reference?) Line 13: protected RequiredFieldValidator RequiredFieldValidator2; Line 14: protected Button Button1; Line 15...
  19. neomax

    web forms authentication

    I've got 3 files, "login.aspx, login.aspx.cs, Default.aspx" login.aspx: <%@ Page src="Login.aspx.cs" Inherits="login" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" >...
  20. neomax

    Keep value of variable

    thanks a lot, rac2 :) how to parse to get value ??? sorry, but I'm newbie in programming

Part and Inventory Search

Back
Top