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 TouchToneTommy 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
  • Content: Threads
  • 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

    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.
  4. 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...
  5. 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...
  6. 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: %>...
  7. 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...
  8. 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...
  9. 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 :)))
  10. 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...
  11. 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) { // ...
  12. 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...
  13. 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" >...
  14. neomax

    Keep value of variable

    Hello, JavaScript community! Is it possible to make variable with value in one page and after use it in another?? How variable may keep the value? Please, write code:)
  15. neomax

    timer at ASP

    does it possible to make timer on page.aspx, that is works on server side? or it's possible only with client side - JavaScript??
  16. neomax

    master pages, where is an error

    Hi:) I've got code that is working properly on one page. But I want to separate each RadioButton group to each .aspx page. Yes, master pages can help, but I'm newbie in programming:( I generated master page and 3 "content" aspx pages for free RadioButton groups each. My idea is to managing...
  17. neomax

    one .cs file for some asp pages, how?

    Hello, I've got a code for 3 groups radiobuttons and one button for submit. The form is placed on one .asp page and everything working properly. My question is how to separate each group radiobuttons for each page (3 groups makes 3 pages)and in last page place a "submit" button? that is my code...
  18. neomax

    value of variable

    public class ButtonTest : Page { protected RadioButton a1; protected RadioButton a2; protected RadioButton a3; protected Label message; protected Button Button4; int X1; int X2; int X3; public void Page_Init(Object sender, EventArgs e) {...
  19. neomax

    problem with variable?

    Hi:) My code is very simple,it's one class with some "public void" methods. I'm using 3 "int" variables in that methods. Problem is that value of variables is not transfering from one to another method. For example: public class Alabala { int x; public void ButtonClick() { int x=4: } public...
  20. neomax

    the button for submit is not working, why?

    Hi:) I make a code for button "Submit" like this ( to submit checked radiobuttons). But it's not working and alert error message. Code for button: <asp:button id="Button4" text="Submit" OnClick="SubmitBtn_Click" usesubmitbehavior="false" runat="server"/><br /> error message: Compiler...

Part and Inventory Search

Back
Top