5,277 Posted Topics

Member Avatar for douglas.shrader.1

Seems to be centered on the screen just fine. Where/what resolution do you seem to be having a problem with? [edit]... i see that you are reffering to the form now...that didnt load before so I saw your image centered...be back.. Ok, I'm back... first, as I recommened to you …

Member Avatar for douglas.shrader.1
0
333
Member Avatar for grafic.web

You definitely should consider using master pages for projects that have multiple pages that need to share a common layout. This allows you to manage one page for the overall layout. You should also be using an external style sheet to manage the look and feel (colors, fonts, margins, etc..). …

Member Avatar for harsh9
0
385
Member Avatar for Valentine220

If you are starting off with asp.net, I suggest you visit the asp.net web site and also pick up a beginners book. I recommend apress books.

Member Avatar for harsh9
0
111
Member Avatar for emily1970
Member Avatar for rhemanuel2012

I don't think its related to being near an LCD monitor. Sounds like hardware issue with the laptop.. Could be related to the power supply, motherboard, failure with any component that connects to be motherboard. Hard to say exactly without looking at the device and testing components.

Member Avatar for mjdodd
0
193
Member Avatar for whitebeauty121

Hello and welcome to DaniWeb! Once you build your reputation to 15 points, **or** hit five posts across five days, you will get full access to DaniWeb's community features, including chat.

Member Avatar for JorgeM
0
196
Member Avatar for Brad_3
Member Avatar for Mr.M

>So my problem is passing like this the name from other page to another page in ASP.NET in VB.NET There are several ways to pass data from page to page. 1) pass the data via a Query String 2) store the data in a session variable 3) store the data …

Member Avatar for Mr.M
0
227
Member Avatar for decade

Yes of course there is... For example taking the text from a textbox control and assigning it to a session variable.. `Session("FirstName") = FirstNameTextBox.Text` Take a look at this MSDN article: [ASP.NET Session State Overview](http://msdn.microsoft.com/en-us/library/ms178581.ASPX?cs-save-lang=1&cs-lang=vb)

Member Avatar for JorgeM
0
176
Member Avatar for strongard63

Do you have the code that we can look at? At this point belated in your description, those that respond are simple guessing. This may be javascript or some server side scripting that is controlling this behavior.

Member Avatar for Nutan_1
0
100
Member Avatar for tooota

Take a look at the location you are trying to create this site. You may want to consider creating your project on the local file system, then publish it to your IIS server once the website is ready for production.

Member Avatar for tooota
0
234
Member Avatar for saja.omarii.7

Maybe its a problem with your PC. Have you tried downloading from a different computer?

Member Avatar for saja.omarii.7
0
178
Member Avatar for cambalinho
Member Avatar for hayatuzair_1

Try setting a width on those elements.. nav ul ul li { float: none; border-top: 1px solid #cbcbcb; position: relative; width: 200px; }

Member Avatar for hayatuzair_1
0
107
Member Avatar for kroyal

There are a lot of online tools that can help you build your RSS feed. However, if you have a static page and you want to create one manually as suggested by Dani, you can easily to so by generating an XML file and creating the proper structure for an …

Member Avatar for sahini
0
210
Member Avatar for SaroGFX

Yes, calling the function in both the head and body is causing that problem. Here is your sample code consolidated in a working html file. <!DOCTYPE html> <head> <title>Flickering Logo</title> <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> <style> div { width:50px; height:50px; border:1px solid gray; } div#box2 { background-color:red; } div { background-color:black; } div.on …

Member Avatar for SaroGFX
0
174
Member Avatar for Jebcrack

You can create a router using one additional VM running windows server with two NICs. One NIC on each subnet. Enable RRAS, no special router are needed since the networks will be local to the RRAS server Then configure the hosts on each subnet with their default gateway address which …

Member Avatar for CimmerianX
0
326
Member Avatar for suavedesign

If you remove the height property as shown below, the space if removed. However, you will need to work on the mouseover/hover effect on those links.. ![75189e1cd1c98fc49ffbc2679ccbf425](/attachments/large/3/75189e1cd1c98fc49ffbc2679ccbf425.PNG "75189e1cd1c98fc49ffbc2679ccbf425")

Member Avatar for suavedesign
0
184
Member Avatar for Violet_82

The local storage that is being referred to is HTML5 localstorage. Your best bet is as diafol recommends which is server side scripting and storing your data in a database.

Member Avatar for diafol
0
211
Member Avatar for nadiam

The problem seems be related to your DB connection and/or query. When I test out your code removing the DB related code, the If..else block executes as expected. If I fill in all of the values in your form, the if produces true. If i leave out any of the …

Member Avatar for nadiam
0
364
Member Avatar for Amoryethel

Two minor changes to your script... 1) checkBox function 2) you forgot to add "()" after the function name "calcTotal" Here is the updated script... <script> var cart1 = 0; function checkBox(name) { document.getElementById(name).disabled = !document.getElementById(name).disabled; } function calcTotal() { var sheet1 = parseInt(document.buy.merch1.value); if (document.buy.MusicSheet1.checked) { document.buy.merch1.disabled = false; …

Member Avatar for Amoryethel
0
126
Member Avatar for HunainHafeez

We'll lets start with how are they the same...they are both databases. What's different is their purpose. A traditional application database is optimized to get data from your front-end application to your back-end database. This type of database is designed and optimize for storage and for quick writes to the …

Member Avatar for RomelynCastillo
0
296
Member Avatar for mitch.hendrix.73

Are you logged in with an admin account? If so, right click the CMD prompt shortcut and select run as administrator.

Member Avatar for jhonmarvi
0
87
Member Avatar for newbie26

Since you mentioned the gridview control, I'm assuming asp.net not asp, correct? Also, I suspect that you'll want to handle this client side? In other words, do you want to control this process from the user's browser or were you going to attempt to handle this server side which would …

Member Avatar for jhonmarvi
0
159
Member Avatar for diafol
Member Avatar for mukulnimker7751

I'm not sure what you mean by trackers. With regard to your data, are you able to store the data in another data source such as a database? You posted in the javascript forum category and based on your description, you have the data in an Excel file. Without some …

Member Avatar for JorgeM
0
143
Member Avatar for douglas.shrader.1

First, I'd recommend that you stay away from using deprecated elements and attributes such as `<center>` and `align`. You should use CSS instead. Anyway, a few minor changes as below should produce the results you are looking for. First, remove the background image from the body element. Add in a …

Member Avatar for douglas.shrader.1
0
212
Member Avatar for brugernavn

What do you mean by root servers indexing your domain name? If you have registered a public domain name with a registrar and created at least one NS record and A record pointing to your public IP address that your DNS server is listening in then the root servers will …

Member Avatar for CimmerianX
0
190
Member Avatar for keerthychandran

Just to add... While the term cloud generally considered as an Internet cloud, some large organizations that may also implement private clouds, especially those types of organizations that provide services to themselves, such as a very large organization with divisions or sub-organizations. Rather than these individual divisions managing their own …

Member Avatar for JorgeM
0
205
Member Avatar for jonsan32

I'm sure Dani is appreciative of your donation and maybe someone can help here.. Just to clarify, your objective is to redirect the user to a random (1 of 3) page after 10 seconds of landing on this page, while showing a progress bar?

Member Avatar for happygeek
0
2K
Member Avatar for WebCat999

You may want to refer to this other DaniWeb thread that deals with a similar question as yours. Links to an example for creating a 3 column layout. http://www.daniweb.com/web-development/web-design-html-and-css/threads/461195/need-help-asap

Member Avatar for simplypixie
0
132
Member Avatar for catastrophe2
Member Avatar for mid2392013
Member Avatar for wolverine62
Member Avatar for razz.cse
Member Avatar for brandon66

What do you mean by others seeing the changes? Do you mean other visitors? If so, you'll need help from some server side scripting and a data source of some type to store and retrieve the data.

Member Avatar for brandon66
0
208
Member Avatar for chrisschristou

Try using a button element in the form. <button type="submit" name="btn1" value="clicked"><img src="#" /></button>

Member Avatar for João_5
0
172
Member Avatar for jalebi

>can you please share some informations about the usage of guidelines in seo process.. before you read up on the two links that hoverportmedia provided, which the Google one is good... the first, most important component in your bag of SEO tools is that you have to most definately, no …

Member Avatar for ranatekskills
0
328
Member Avatar for xaxproy

Do you have any code written so far we can take a look at? Do you have your DB connectivity working where you can query and insert anything yet?

Member Avatar for JorgeM
0
67
Member Avatar for asif49

I'm all for freedom of speech, expression, etc.. However, there are things that cross this line. Its not really that hard to figure out what is acceptable vs not. Sure, there can be debate on certain scenarios... With regard to videos of actual murders, etc... the last time I checked, …

Member Avatar for Ancient Dragon
0
869
Member Avatar for Rawan_92line
Member Avatar for rhodoscoder

You can create one function then for each div, attach an onclick event that sends the function a number. For example... <div onclick="clicked(1)"></div> Then the function... function clicked(userChoice) { If (userChoice == 1) { // some code } else if (userChoice == 2) { // some code }

Member Avatar for JorgeM
0
103
Member Avatar for ragini91
Member Avatar for LibbyWarner
Member Avatar for david.godistei
Member Avatar for david.godistei

Have you validated that those IPs are indeed online? I am not able to ping either of those public IPs, at least not from the network where i'm at. >Now, we have configured 197.251.225.125 to another router as a gateway and connected to a Switch to distribute internet connection to …

Member Avatar for JorgeM
0
508
Member Avatar for HunainHafeez

>since your subquery doesn't return anything but TRUE correct...the subquery is not there to produce a result with data. it simply returns a value of TRUE **or** FALSE. The purpose of the query (what you are interested in when using this approach) is a test to see if there is …

Member Avatar for deceptikon
0
340
Member Avatar for Kanshika

Your description is not very clear. Do you have some relevant code you can show to better understand the problem.

Member Avatar for Kanshika
0
159
Member Avatar for john.koerschgen
Member Avatar for patexia1

The End.