5,277 Posted Topics

Member Avatar for Siberian
Member Avatar for sly1984

Yes, generally to access a database, you need some type of server side scripting such as ASP, ASP.NET, PHP, Java, etc.. With regard to the web server, if you will be hosting ASP, or ASP.NET, you will be using IIS on a Windows box. If you are going to code …

Member Avatar for JorgeM
0
112
Member Avatar for laaus001

>Is the MySQL database and the SQL query language part of the Microsoft Windows 7 operating system No, the MySQL database application is not included. You can download a copy from their website: http://www.mysql.com/ With regards to the SQL query language, there is nothing to install. You write your SQL …

Member Avatar for rubberman
0
207
Member Avatar for Iikeloa

It would be more helpful if you provide sample code from this table you are referring to.

Member Avatar for Iikeloa
0
153
Member Avatar for chuks2four

Everyone needs code. That's not exactly how it works here. Generally, you formulate a well thought out question, providing specific examples and information related to errors you may have encountered, etc... then you get help. In any case, based on your statement, it sounds like you are interested in some …

Member Avatar for JorgeM
0
82
Member Avatar for wallet123

While posts are generally not deleted, unless a rule was broken... you can click on the "flag" icon and provide a reason for the deletion. A moderator will review the reason and take the appropriate action.

Member Avatar for happygeek
0
164
Member Avatar for HoverportMedia

The first thing that I noticed is that you were including the HTML5shiv, but your doctype is of html5. Your document decleration should be... `<!DOCTYPE html>` instead of... `<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">` I did check with IE11 and used the browser tools and noticed that if …

Member Avatar for HoverportMedia
0
198
Member Avatar for Iikeloa

code looks good to me and I tested locally as well and the action works as expected.

Member Avatar for Iikeloa
0
285
Member Avatar for Binoy_1

It's accomplished using URL Rewrite techniques. This is a fairly common practice. One of the main purposes of using URL rewriting is to allow for the use of SEO friendly URLs. However, there are many other reasons why to use it such as for redirection.

Member Avatar for JorgeM
0
141
Member Avatar for mherz

This error means that you are trying to use a reference variable that has a value of nothing(VB)|null(C#). You likely have a scenario where you never assigned a value to the variable, or you set the variable equal to nothing|null manually.

Member Avatar for mherz
0
314
Member Avatar for kavitha N

So if i understand you correctly, you have a gridview control and when you select an item, you want to view the details of that item on the same page. If so, this is generally accomplished using a gridview and detailsview control. There are quite a bit of tutorials online …

Member Avatar for kavitha N
0
127
Member Avatar for rodi406

You have a for loop that will prompt you for 2nd and 3rd input for a total of 7 times. Not sure why you glhave those two additional prompts if you are only checking after prompt 3

Member Avatar for tricket_7
0
177
Member Avatar for XIMLabz

>but there're many point of view and many ways of thinking about this solution. That's true because there is no right or wrong way regarding this topic. I also prefer storing images and uploaded files on the file system. However, if you read comments about those that store this in …

Member Avatar for cereal
0
424
Member Avatar for kavitha N

>using (OracleConnection Con = new OracleConnection("SConnectionString")) you either need to supply the connection string there, or add the connection string to your web.config file and then reference the web.config when setting up your connections. in web.config... <connectionStrings> <add name="connName" connectionString=" .. you fill this in ..."/> </connectionStrings> in your code …

Member Avatar for BMXDad
0
232
Member Avatar for Stuugie

At some point you may be picked/asked to be "featured" in the montly newsletter. http://www.daniweb.com/email/archive With regard to "Colleague", I think you are referring to "Team Colleague". I beleive that at some point in the past, some of the moderators that were no longer able to or wanted that role …

Member Avatar for Stuugie
0
131
Member Avatar for mherz

>I am just new with ASP.NET c# and some of the function is Im not familiar, I need your help on this matter.. The solution to this problem is likely going to be client side related not server side. What you are asking is that when you select something on …

Member Avatar for mherz
0
2K
Member Avatar for masterinex

I beleive your code should be changed to: Automobile car = new Automobile(); int x = car.compute(2,3);

Member Avatar for Mike Askew
0
147
Member Avatar for OsaMasw

I put together an example that you can look at. Seems like the `@media print { }` is working. <!DOCTYPE html> <html> <head> <style> @media print{ #tbl1 {background-color:#999; } </style> </head> <body> <table id="tbl1"> <tr><th>Heading1</th><th>Heading2</th></tr> <tr><td>Cell1</td><td>Cell2</td></tr> <tr><td>Cell3</td><td>Cell4</td></tr> </table> </body> </html> Keep in mind that if the user has to enable …

Member Avatar for OsaMasw
0
28K
Member Avatar for Samerases

>thank for all,,,,Especially JorgeM.... Thanks, but unfortunately TMG is a product I have no knowledge/experience in. >I want to make group of users be on the Fiber line, remaining on the ADSL line. Possible? if yes,,, how?~~~ If all of the users are configured to hit the same gateway solution …

Member Avatar for Samerases
0
157
Member Avatar for Evil_genius82

>The issue is it keeps calling the beep sound every second due to the constant iteration of the function. Isnt it because the response_status coming back is always set to 1? Sorry, I'm not clear on the process here based on what you are trying to do. From what I …

Member Avatar for Luckychap
0
187
Member Avatar for centenond

Not sure what you are trying to do but how about this... setTimeout(function(){ cerrar(id) },1400);

Member Avatar for Luckychap
0
337
Member Avatar for SimonIoa

You've posted quite a bit of code. I would recommend that you narrow it down to the code snippet you are actually having a problem with. There are quite a bit of Javascript gurus on this site that can help you but its unlikely anyone is going to read all …

Member Avatar for SimonIoa
0
365
Member Avatar for Ari_1
Member Avatar for grafic.web

>I mean, my fear is about the database... if i make some change on my code and i wnat to put the project on the server, will i lose my data on the database of the server? I assume that you have this project locally on your computer. This is …

Member Avatar for JorgeM
0
214
Member Avatar for Pravesh_1

It would probably be more helpful for us if you tell us exactly what is not working. What part of the validation is not working? What are you trying to validate exactly.

Member Avatar for JorgeM
0
154
Member Avatar for Alberto Bucur
Member Avatar for chaitu11

maybe something like this... <!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <a href="javascript:void(0)" onclick="myFunction('http://www.google.com')">Google</a> <script> function myFunction(url) { window.open(url); } </script> </body> </html> This is just one idea. I'm sure that you get the idea here and can come up with something more specific for your needs.

Member Avatar for Troy III
0
183
Member Avatar for GraficRegret

Can you explain a bit more of what trouble you are having? I can access the links you posted with no problem.

Member Avatar for diafol
0
141
Member Avatar for chrisschristou

Instead of alert, you want to redirect the user? Did you try.. `window.location.href="#login-box"`

Member Avatar for chrisschristou
0
196
Member Avatar for diafol
Member Avatar for grafic.web

I've always liked Nivo Slider. However, there are countless slides out there. You can also build a simple one on your own.

Member Avatar for grafic.web
0
490
Member Avatar for mherz

This looks like a duplicate thread, same concept but different content. Please read my comments... http://www.daniweb.com/web-development/aspnet/threads/473425/passing-value-from-pop-windows-using-asp.net-c Try to stick with one thread instead of creating additional threads when you dont get a response on one.

Member Avatar for JorgeM
0
172
Member Avatar for slow_but_sure
Member Avatar for chaitu11

We definately need to see your code, but it sounds like you are writing to your dB on each page load. You should check to see if hte page is posted back by the submit button and if it is, then continue processing to write to the db. If its …

Member Avatar for JorgeM
0
106
Member Avatar for Noralyn_1
Member Avatar for nufftalon
Member Avatar for amit7471

You mentioned a modem, but do you have a router connected to the modem? If the ISP provided this "modem", now they typically provide you with one box that serves both functions. In any case, what you really want is that on the router, look for the "port forwarding" or …

Member Avatar for Ezekiel_1
0
389
Member Avatar for Dani

I dont have a specific model to suggest, but I have had excellent experiences with HP servers. Mainly due to the reliability and HP support. Years ago (about 4 or so) I was heavily involved in server support. Had alot of experience with the DL360 and DL380 models ranging from …

Member Avatar for Ezekiel_1
0
260
Member Avatar for <M/>

This site has a step by step guide. I havent tried this myself, but just providing it in case you havent tried this process. http://malwaretips.com/blogs/ads-by-keep-now-removal/ If I can recommend a different approach after you resolve this issue... Set up a clean installation Windows, install the latest service pack and security …

Member Avatar for JorgeM
0
165
Member Avatar for savedlema

Sounds to me like you would need break up the table into multiple tables personId name 1 Jim 2 Sally 3 John 4 Fred 5 Sam 6 Marie 7 Fred 8 Tom favid personId favoriteColor 1 5 red 2 6 green 3 6 orange 4 6 purple foodId personId food …

Member Avatar for savedlema
0
519
Member Avatar for Wael1988

In the code-behind for the .ascx (page were control exists) page, expose the property VB Example... Public Property lblControl As String Get Return lable1.Text.ToString End Get End Property C# Example... public string lblControl { get { return label1.Text.ToString(); } } Then, on your web page in the aspx page, you …

Member Avatar for Wael1988
0
3K
Member Avatar for safiqurrahman

An RSS feed is important for your site because you can allow your readers to subscribe to your content. In turn, they can share these feeds on social networks. The process continues your site can get exposure. Some search engines also allow you to submit your RSS feed and they …

Member Avatar for indra1220
0
297
Member Avatar for davidjennings

>I had placed order in the increment counter (StockAllocate + 1) like so (StockAllocate + 1) but this did not seem to work. Where? I don't see that. Maybe this is what you want to do? StockAllocate = (Order + 1)

Member Avatar for davidjennings
0
979
Member Avatar for spoudel
Member Avatar for andi-dev

These files that you say you see the actual code.. they are saved as .php and not another extension like .txt or .htm?

Member Avatar for andi-dev
0
447
Member Avatar for gerhardus01

I think you may have the domain concept confused with regard to its use on a Windows 7 computer. For a windows computer to "join" a domain, you need to first have a Windows server running Active Directory Domain Services. The domain concept in Windows refers to a centralized service …

Member Avatar for rubberman
0
642
Member Avatar for NS-Technologies
Member Avatar for Siberian

You are missing quotes. var arnold = "going"; It will display an alert message with the string of characters.

Member Avatar for Troy III
0
307
Member Avatar for grafic.web

There are lots of tutorials and videos on the asp.net site. Have you checked there? http://www.asp.net/get-started

Member Avatar for grafic.web
0
180
Member Avatar for sagisgirl

Looks like this is a duplicate thread of this one: http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/467834/auto-calculate

Member Avatar for JorgeM
0
287

The End.