Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
E

evlxtc

@evlxtc
About
Posts
32
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • MenuItem in .NET
    E evlxtc

    I found the problem. My parents that does have children has all got values of "" and this does not work. Each parent and child need to have a unique value it seems. I set each parent with a unique value from 1 - 10 and simple check to see if the value from the selected menuitem is NOT a numeric value between 1 - 10 and if not then do the iframe src change. I did not know that the parents values should be unique and should have values. Thanks in any case. I am just glad it is working now. Must say took me ages to figure this out as I could find no help in telling me that this should be. :)

    this is me

    ASP.NET csharp data-structures help question

  • MenuItem in .NET
    E evlxtc

    I have a problem. If I have a submenu item in a menu tree and it is not in the FIRST parent menu then it does not work BUT if I add this to the first menu it works in the first as well as any other menuitem I add this submenu too? ANY ideas? I have a sub running to pickup a onmouseclick on the menuitems. Sub onclick() Does something Menuitem1 Submenu item1 Submenu item2 Submenu item3 Menuitem2 Submenu item4 Submenu item5 Submenu item 1,2,3 works fine and on a mouse click on them the sub runs, but 4,5 does not do anyhting. IF I now do the following. Menuitem1 Submenu item1 Submenu item2 Submenu item3 Submenu item4 Menuitem2 Submenu item4 Submenu item5 THEN Submenu item 4 works fine in both the Menuitem1 as well as Menuitem2 parents. Both works. I do not WANT Submenu item4 under Menuitem1 but if I do not have it there it does not work. ANY ideas? Here is the almost full page code. I had to ADD all the submenues to my first parent manu jsut to get it to work, but if I take them out none of the other parent manues submenues work at all. ---------------------------------------------------------------------------------------------- <%@ Page Language="VB" %> Sub NavigationMenu_MenuItemClick(ByVal sender As Object, ByVal e As MenuEventArgs) Dim MessageTransfer = e.Item.Value 'MsgBox(e.Item.Value) 'message.text = MessageTransfer Response.Write("<input type='hidden' id='TestString' value=" & MessageTransfer & ">") End Sub

    ASP.NET csharp data-structures help question

  • Where is the connection string settings? URGENT
    E evlxtc

    I get the following error when trying to run my ASPX page on my live server but it works FINE on my local test server. Where is the database connection settings for this as I can ONLY think that is the problem? ERROR System.Data.OleDb.OleDbException: Could not find installable ISAM. at System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) at System.Data.OleDb.OleDbConnection.InitializeProvider() at System.Data.OleDb.OleDbConnection.Open() at DreamweaverCtrls.DataSet.DoInit() -------------------------------------------------------------------------------- System.Data.OleDb.OleDbException: Could not find installable ISAM. at System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) at System.Data.OleDb.OleDbConnection.InitializeProvider() at System.Data.OleDb.OleDbConnection.Open() at DreamweaverCtrls.DataSet.DoInit() -------------------------------------------------------------------------------- System.Exception: The DefaultView was requested but no tables yet exist. at DreamweaverCtrls.DataSet.get_DefaultView() -------------------------------------------------------------------------------- System.Data.OleDb.OleDbException: Could not find installable ISAM. at System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) at System.Data.OleDb.OleDbConnection.InitializeProvider() at System.Data.OleDb.OleDbConnection.Open() at DreamweaverCtrls.DataSet.DoInit() -------------------------------------------------------------------------------- System.Exception: The DefaultView was requested but no tables yet exist. at DreamweaverCtrls.DataSet.get_DefaultView() Other than this my files are as follows. ASPX file: -------------------------------------- <%@ Page Language="C#"%> <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %>

    C# help csharp database sysadmin question

  • After moving ASPX page to a live server this happens.
    E evlxtc

    System.Data.OleDb.OleDbException: Could not find installable ISAM. at System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) at System.Data.OleDb.OleDbConnection.InitializeProvider() at System.Data.OleDb.OleDbConnection.Open() at DreamweaverCtrls.DataSet.DoInit() ----------- All works fine on local test server and all pages other than the ONE works fine on live (The connection and web.config files must thus be correct????) ALL data in the DB has got valid data in as well and although the file does also include canvas methods to display graphics I don't know if this is the problem. PLEASE any help? It dose write the cookie data as well and retrieves it correctly it seems. ANY thing else it could be? TOp part of my file is ----------------------- <%@ Page Language="C#" %> <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> <%@ Register TagPrefix="Portal" TagName="ImageCanvas" Src="ImageCanvas.ascx" %> <%@ import Namespace="System.Drawing" %> this is me</x-turndown>

    ASP.NET graphics help csharp database sysadmin

  • Multiple table inserts in Dreamweaver. ONE FORM
    E evlxtc

    Got two tables in a MDB tblUser, tblWOL Need to with one form UserN, Pass, name, surname be able to insert a record in tblUser and a record with the UserN in the tblWOL. I can use Dreamweaver to insert into the tblUser table, but how do I add another piee so that it inserts a record into the tblWOL as well without any further User interaction? I get a problem about "must have another form"Dreamweaver seemingly only allows ONE insert/update/delete per form and only allows to do it into/from ONE table in the DB? Any help please? this is me

    Web Development help question database announcement

  • DreamweaverCtrls.dll error after uploading to IIS server
    E evlxtc

    My pages works fine on the local development PC but after uploading I get this error when accessing the ASPX page that displays some dynamic graphics using canvas. Any ideas from this error msg below what I can do to fix this? It seems like it does not see or use the DLL? Does this need to be ïnstalled/registered on the IIS server I have uploaded to? Thanks. Server Error in '/' Application. -------------------------------------------------------------------------------- Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: File or assembly name DreamweaverCtrls, or one of its dependencies, was not found. Source Error: Line 1: <%@ Page Language="C#" %> Line 2: <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> Line 3:

    Web Development help csharp graphics sysadmin windows-admin

  • Var from Cookie into a SQL query in ASPX
    E evlxtc

    I just need to get my cookie value as a variable into my SQL query. That is all. PLEASE can someone help. I just do not seem to get it done. The Cookie in the rest of the code reads in fine and displays, but I cannot get it to work in the SQL statement. Using Dreamweaver. Here is the code. Just the WHERE part of the SQL query? Thanks guys and gals. ------------------- anguage="C#" %> <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> <%@ Register TagPrefix="Portal" TagName="ImageCanvas" Src="ImageCanvas.ascx" %> <%@ import Namespace="System.Drawing" %> void Page_Load(Object sender, EventArgs e) { HttpCookie UserCookie = Request.Cookies["AuthenticateGKDUser"]; if (null == UserCookie) { Response.Write("No cookie");} else{ String UserCookieValue = UserCookie.Value.ToString(); Response.Write(UserCookieValue); } Pen newpen = new Pen(Color.Black); Pen PartnerPen = new Pen(Color.Blue); Pen ClientPen = new Pen(Color.Red); Bitmap bitmap4 = new Bitmap(500,500); Graphics g4 = Graphics.FromImage(bitmap4); g4.Clear(Color.White); g4.DrawLine(newpen,250,250,250,0); g4.DrawLine(newpen,250,250,367,29); g4.DrawLine(newpen,250,250,457,110); g4.DrawLine(newpen,250,250,499,224); g4.DrawLine(newpen,250,250,482,344); g4.DrawLine(newpen,250,250,411,442); g4.DrawLine(newpen,250,250,302,495); g4.DrawLine(newpen,250,250,181,490); g4.DrawLine(newpen,250,250,70,424); g4.DrawLine(newpen,250,250,12,327); g4.DrawLine(newpen,250,250,3,211); g4.DrawLine(newpen,250,250,48,103); g4.DrawLine(newpen,250,250,137,27); switch(cWork) { case 10: cWorkStrX = 250; cWorkStrY = 0; break; case 9: cWorkStrX = 250; cWorkStrY = 25; break; case 8: cWorkStrX = 250; cWorkStrY = 50; break; case 7: cWorkStrX = 25</x-turndown>

    Web Development graphics database csharp json help

  • Server Application Unavailable
    E evlxtc

    Error msg that I get now running my ASPX page (With graphics stuff in created in Dreamweaver) All was running fine. Had .NET installed. All working. Had to change the access permissions on my folders to allow IUSER_SERVER access so that my DB's will work. (WHICH they now do) BUT since I have changed my access permissions, my ASPX page just gives me this error msg. Any ideas? What would the access permissions have to do with this and how to fix it? ERROR : Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur. CODE: ASPX Page <%@ Page Language="C#" %> <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> <%@ Register TagPrefix="Portal" TagName="ImageCanvas" Src="ImageCanvas.ascx" %> <%@ import Namespace="System.Drawing" %> void Page_Load(Object sender, EventArgs e) { Pen newpen = new Pen(Color.Black); Bitmap bitmap4 = new Bitmap(300,300); Graphics g4 = Graphics.FromImage(bitmap4); g4.Clear(Color.White); g4.DrawLine(newpen,5,5,20,20); g4.DrawLine(newpen,5,5,50,5); ImageCanvas4.bitmap = bitmap4; }

    And still more info CODE : ASCX PAGE <%@ Control Language="C#" %> <%@ import Namespace="System.Drawing" %> <%@ import Namespace="System.Drawing.Imaging" %> public Bitmap bitmap; public ContentType ImageType = ContentTyp</x-turndown>

    Web Development graphics csharp help database sysadmin

  • No database wants to work
    E evlxtc

    I have got .NET and my IIS running on a XP machine. WHERE do I check my security on the FILES. In IIS it is using the IUSER_ what ever account to gain access... Thanks for the help thus far, I just need to know now WHERE to check and HOW to check all this. THANKS FOR A GR8 WEBSITE AND EXTREMELY HELPFULL AND QUICK SUPPORT. Why don't they tell you .NET Framework will MURDER all your sites... :( ;) this is me

    Web Development database csharp dotnet sysadmin help

  • No database wants to work
    E evlxtc

    I am using XP... HOW do I do this... I have checked and my IIS is using IUSER_ what ever as the authentication user account but how do I check my files to see that they also have this?? Sorry sounds dumb I am sure.. PLEASE HELP... And YES it all happened after I installed .NET Framework. DAMN why don't they TELL you this will happen when you install it. :( THANKS for the feedback thus far. this is me

    Web Development database csharp dotnet sysadmin help

  • No database wants to work
    E evlxtc

    SERIOUS... Lost all my sites. I have been working on a few ACCESS DATABASE websites and all was working fine....TILL NOW. All of my sites on my local machine is giving me exactly the same error when ever I try to access my ACCESS DBs. All different sites, all with different databases.... What is going on. .PLEASE. Here is the error. This funnely enough happened just after I did an ASPX page connection to an Access DB and from there on all my ASP page connections to ANY OTHER DB in ANY of my other sites fell over.. DISASTEROUS. PS Working in Dreamweaver MX. The part that bothers me is "Operation must use an updateable query." FULL ERROR. ----------------- Please try the following: • Click the Refresh button, or try again later. • Open the localhost home page, and then look for links to the information you want. HTTP 500.100 - Internal Server Error - ASP error Internet Information Services ________________________________________ Technical Information (for support personnel) • Error Type: Microsoft JET Database Engine (0x80004005) Operation must use an updateable query. /gkd/CandidateScoreWOL.asp, line 111 • Browser Type: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322) • Page: POST 195 bytes to /gkd/CandidateScoreWOL.asp • POST Data: cWORK=6&cPARTNER=0&cCHILDREN=0&cFAMILY=0&cRELIGION=0&cHOBBIES1=0&cHOBBIES2=0&cHEALTH=0&cSPORT1=0&cSPORT2=0&cFINANCIALINDEPENDANCE=0&cOTHER1=0&cOTHER2=0&Submit=Submit&MM_update=form1&MM_recordId=1 • Time: Monday, January 09, 2006, 1:37:56 PM • More information: Microsoft Support ---------------------------------------------------- this is me

    Web Development database csharp dotnet sysadmin help

  • ACCESS DB in a ASPX page
    E evlxtc

    I am not using VS. I am using Dreamweaver MX. Is there NO easy way of doing this in Dreamweaver? Dreamweaver MUST in some way be able to do this? Or can I do this MANUALLY? My ASPX page is working fine and there is NO "bin" directory in my website. The ONLY aspx stuff I have on my website is the mypage.ASPX and an include file mypage.aspc.. nothing moret han that which looks at ASPX or .NET. The rest is all normal ASP pages and html pages. I cannot believe this can be so difficult :( this is me

    ASP.NET database csharp graphics help question

  • ACCESS DB in a ASPX page
    E evlxtc

    Hi. If you have a look on the links.. My other responce has the FULL error msg as well as the ASPX code. (in full) PLEASE CAN SOMEONE HELP. I am not so clued up as to what was said as a solution by the previous msgs posted. Thanks. this is me

    ASP.NET database csharp graphics help question

  • ACCESS DB in a ASPX page
    E evlxtc

    Thanks for the quick responce. It sounds so simple if you say it, but unfortunitly I have not a clue what you mean. :) GAC?? What is that and what do I do with the assemblies[^] part? Where and WHAT do I do? I am SURE it cannot be difficult and I am probably acting stupid, but pelase help? This is mehis is teh web.config file and works FINE for all the otehr ASP pages accesing the DB... What needs to be added here then for teh ASPX? WEB.CONFIG FILE ----------------------------------------------------------------------------- ------------------------------------------------------------------------------ I just cannot understand why does Dreamweaver not do this FOR me? Thanks thus far. I am thinking of going to Visual Studio and doing it in that... Just the ASPX pages in any case. Would that be sensable?

    ASP.NET database csharp graphics help question

  • ACCESS DB in a ASPX page
    E evlxtc

    The error I am getting msg: Server Error in '/GKD' Application. -------------------------------------------------------------------------------- Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: File or assembly name DreamweaverCtrls, or one of its dependencies, was not found. Source Error: Line 1: <%@ Page Language="C#" %> Line 2: <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> Line 3:

    ASP.NET database csharp graphics help question

  • ACCESS DB in a ASPX page
    E evlxtc

    I have been using ASP pages mostly for my websites, but needed now to do some C# code to implement some GDI stuff.. This all works fine, but NOW I need to acces my ACCESS DB jsut to retrieve values. This I cannot do. To add a ACCESS DB connection etc (editing inserting etc) is easy in plain ASP and I am SURE it is just as easy in ASPX??? BUT I jsut cannot get it working in Dreamweaver MX. I keep on getting errors. A BLANK ASPX page. (RUNS) then I do a simply database connection to my ACCESS DB (Which only has one table) and immediatly I get errors and nothing works. PLEASE CAN SOMEONE HELP? this is me

    ASP.NET database csharp graphics help question

  • DRAWING A LINE???
    E evlxtc

    I have read through a few a\rticles and tried a few examples with no luck. All I need is simply to draw a line.. I have 2 XY values and just need a line draw from one point to the other across the internet in a browser??? ANY HELP ASAP please? (GDI+)?????? this is me

    ASP.NET graphics winforms help question

  • includes errors
    E evlxtc

    Thanks. I actually had my db in another folder and more secure but in utter frustration of it all not working moved it to the same folder just to get it working. I will try this asap amnd get it working FIRST and then worry about the location and security. The server was also just built (because of my request) so I am not sure that it is all set up correctly on there side, but I am sure it must be THANKS AGAIN FOR THE DETAILED ANSWER. this is me

    Web Development database security xml help question

  • includes errors
    E evlxtc

    SERVER IN USA ME IN RSA I do not know the physical (C:\ what ever) path on that server, but surely that should not be needed. The http:// path I put in I can see the files there if I type it in by hand each one, but the one does not pick the other up??? What to do? this is me

    Web Development database security xml help question

  • includes errors
    E evlxtc

    all worked fine till uploading it. NOW errors My include in my ASP is This picks up the included file fine and then this is the include file <% ' FileName="Connection_ado_conn_string.htm" ' Type="ADO" ' DesigntimeType="ADO" ' HTTP="false" ' Catalog="" ' Schema="" Dim MM_laptop_STRING MM_laptop_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=http://www.comptraders.co.za/Laptop.mdb;Persist Security Info=False" %> From there I get an error then that it cannot find my mdb.(OR invalid file)???? Even if I do the Source=Laptop.mdb Nothing works. Error 80004005 Invalid file ??? ALL my files is now in ONE directory (ROOT) Before I actually moved all to one dir I had error 0126 that it cannot find the file. ANY IDEAS PLEASE? I am getting a bit irritated with this now ? :) this is me

    Web Development database security xml help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups