Re: Web Services using ASP.NET Programming Web Development by rajshah85412 Here is the detailed answer : You want to: Register new users to your website. Validate (log in) existing users using a web service. You will achieve this by: Creating a SQL database to store user information. Developing a web service in ASP.NET to handle registration and login. Connecting the web service to your database. … Re: How to show visa info based on country selection in a travel form? Programming Web Development by Dani I have moved your post into the web development forum instead of the advertising/marketing forum where it was and tagged it appropriately. Can you please provide the Javascript code as well as PHP code that is buggy so that we can help diagnose this for you. For example, if the JSON response is empty, it is most likely because of a bug in the … Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim I felt like some fun, so I just put together an example for you using CDN's and bootstrap 5. From what you are talking about you probably want to put some of that logic into the Javascript and not need to send a server request for each one, I usually do this kind of thing with javascript objects/arrays (eg `settings['GB']['visa_req'] = false;… Re: Data storage and retrieval - cache or database Programming Mobile Development by jonathannweyer If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then store it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads. Re: Delete unused MySQL indexes Programming Databases by Dani Creating and removing database indexes is very complex and is not a matter of let's throw spaghetti at the wall and see what sticks. When working with big data, loads and loads of thought goes into each and every index. Nearly all indexes can work, but not as well as others might, and having too many indexes on a table can slow down inserts and … Re: which language do i start leaning in 2025 Programming Software Development by Dani It depends what you’d like to build. If a simple website, you can use HTML and CSS. Want some interactivity? Add JavaScript. Want to create more complex dynamic websites? You will need a backend language such as PHP and a database such as MySQL. I see you also tagged this topic c++. C++ is a popular language used for non-web related … Re: Cannot run exe from asp.net Programming Web Development by john_111 Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can … Re: Delete unused MySQL indexes Programming Databases by Reverend Jim I faced a similar problem when I created and maintained the corporate side databases to mirror the EMS (AGC/SCADA) real time data. One month of data was roughly 300 meg and it was critical that this be available 24x7. Sometimes databases break and it is important to recover them as quickly as possible. Knowing that around 90% of the queries were on… Re: Delete unused MySQL indexes Programming Databases by Dani I can see your rationale, but I don't necessarily agree with a separate table in the database for every month. There are much more elegant ways of handling that use case these days, especially in MySQL. You didn't specify how long ago this was. Either way, still hoping a MySQL expert can come along and answer my question here. Re: Delete unused MySQL indexes Programming Databases by toneewa Your data wouldn't be accurate and incomplete, if either one of the performance schemas were off. event_waits_current was off, so MySQL didn't store the data (e.g., collect wait event data in detail), which can create incomplete or missing information about index usage like table I/O waits, index access details, event metadata, or timing and … Re: How secure is Github? Programming Software Development by kearawill GitHub is generally very secure for hosting code, especially with features like 2FA, security alerts, and private repositories. However, like any platform, it's only as secure as how you use it. I’d never recommend storing sensitive information like passwords, private keys, or database credentials—even with .gitignore. Instead, use environment … Re: How secure is Github? Programming Software Development by Dani > I’d never recommend storing sensitive information like passwords, private keys, or database credentials—even with .gitignore. Instead Why not, though? Doesn't .gitignore just completely *ignore* the files to where they never touch Github's servers? To me, that sounds much more secure than Github secrets, where sensitive information *is* … Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Re: Buggy career talk :-P Programming by Salem This https://en.wikipedia.org/wiki/Peterson%27s_algorithm Plus two different kinds of processors. Plus an error rate of less than once a week. After many months, the cause was eventually captured on a bus analyser. After which, the solution was obvious after a bit of RTFM. Turned out that one of the processors had the then awesome new … JPassword and access MSAccess Database Password Field Programming Software Development by markjnj Hey all, I'm working on a login screen and have an MSAccess database that stores the userName and password. I am currently using JtextField and String to access the username and password located in the MSAccess database, but now I want to hide the password when it is being typed into the Password field. I know how to hide it by using JPassword but… Re: JPassword and access MSAccess Database Password Field Programming Software Development by markjnj I've got a MSAccess database which stores the usernames and passwords. I guess I don't have to store the username and passwords in an Access Database, but it makes it easier to maintain as far as adding/removing user access to the java application. How to connect MSAccess database in ASP.NET Programming Software Development by rahilameen hi i am a new memeber of this group. i am developing a web application which inserts customers details into databse when customer inserts his details on the web page. i need help regarding code to connect MSAccess database in ASP.NET.means if user inserts the details the details should get saved in the database under respective colums of the table.… Search in a MSAccess Database Programming Software Development by NorthDakota Hi all :) I'd like to make a little vb.net program that executes searches on a msaccess database. I use a textbox to get the value to search and than i'd like to search all the values that has the textbox value in the middle. So, the queries should look like this: SELECT Rec1, Rec2, Rec3 FROM Table1 WHERE Rec1 LIKE "*" & txtTextBox… Re: Insert Datetimepicker into MsAccess database Programming Software Development by chanthung Thanks, wl sure try this... one more thing...why is my MsAccess database not retaining the datas added few minutes earlier...just dissapears after sometime after datas been added at runtime...??? database downloading from access to mysql Programming Software Development by mailtosridar hai i am sridar in my project there is a database it is created by msaccess and at present i am using mysql database by vb.net coding by clicking the button i want to download a datas from msaccess database to my sql please any one help me my mail id [email]mailtosridar15@gmail.com[/email] [email]mailtosridar@yahoo.ci.in[/email] MSAccess Database double ups Programming Software Development by ptaylor965 I am using an MSAccess 2007 database file to retrive some info The tables look like this tblIncome Date | Takings 12/05/2007 | 10 12/05/2007 | 20 13/05/2007 | 10 16/05/2007 | 40 tblExpence Date | Takings 12/05/2007 | 10 13/05/2007 | 20 14/05/2007 | 50 When running the code : in tblExpence the Date… Re: How to connect MSAccess database in ASP.NET Programming Software Development by danidev Use data access layer to execute sql query see following [url]http://urenjoy.blogspot.com/2008/10/basic-data-access-layer-for-msaccess.html[/url] Update your database name, Pass query and execute it. Re: How to connect MSAccess database in ASP.NET Programming Software Development by ketanbece Hello There First Open Web.Config of your Application and Write Down Following Code in Web.Config File. in appSettings tag add key="constr" value="Provider=Microsoft.Jet.Odbc.4.0;DSN=resume;User Id=admin;Password=admin;" end appSettings tag Now open your Application and write down following Connection String … Re: How to connect MSAccess database in ASP.NET Programming Software Development by Jugortha Here is a code to do that public void ConnectToAccess() { System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(); database. conn.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data source= @"path \AccessFile.mdb"; try { conn.Open(); // Insert code to process data. } catch (Exception caught) { … Re: How to connect MSAccess database in ASP.NET Programming Software Development by msubash78 hi, i am newly joined in this group. I need sample codes for connecting the oracle database with .net. If possible pls provide step by step. thanks. M.Subash riaydh Insert Datetimepicker into MsAccess database Programming Software Development by chanthung Hi all. I am trying to add a record into the database wothout much success. sometimes it works and sometimes it returns error "[B]overflow exception unhandled[/B]" And even the database is not all the time updated. How do you add the Datatimepicker value into the database...? Will really appreciate help on this. Thanks Pl check … How to Protect MSACCESS database Programming Software Development by rajeshkhanna_in [COLOR="Red"][/COLOR][HI all, I have made a commercial software using vb6.0 and MSACCESS. My problem is even if I protect my .mdb file with a password, the password can be very easily found out by one or the other cracks. I want to further protect my MSACCESS datafile. Is there a way in which even if the user enters correct password to … Login Page Database connection to MSAccess Programming Software Development by bravo659 I been working on this login page for months, and to no avail can have the program working. I am using the MSAccess Database and using VB.Net. This is a windows application creating a login page. The following is the code that I been working on: Dim mypath = Application.StartupPath & "\password.mdb" Dim Password = ""… Linux and MsAccess Hardware and Software Linux and Unix by veledrom Hi, How can use MsAccess database on Linux machine? I use PHP to connect to mdb and work with it. Thanks java with msaccess Programming Software Development by Pushpasheela I want to fetch data from msaccess database using like. but my query not run. Here is my code.[CODE]String pin=cmblocation.getSelectedItem().toString(); rs2=st2.executeQuery("Select * from pin_numbers where pin_number like 'pin&????'");[/CODE]. But my query is not run. Please help me.