5,277 Posted Topics

Member Avatar for zmem32
Member Avatar for Adeel_2
Member Avatar for ruhestorer
Member Avatar for dstoltz

>So, are there any "cons" to using this approach? Doesn't sound like it. I think the benefits greatly outway any cons you may come up with. Of course, the URL rewriting introduces the risk of making mistakes with your rules, but that can be mitigated by following a testing process …

Member Avatar for Dani
0
376
Member Avatar for seovela
Member Avatar for kiccano
Member Avatar for <M/>

>It was stimulating and satisfying. It sure beats some of life-sucking work I have been doing since graduating. for those of you who are still in school... you have no idea what's coming your way. Its no coincidence that you hear so many of us say, "if we can just …

Member Avatar for Dani
0
377
Member Avatar for frank33

For your environmental variables to have changed, someone or something (another program) would have had to had done it intentionally. There's nothing that I can think of that would have caused your path variable to change by accident or something you unintentionally did unless you issued some commands within the …

Member Avatar for frank33
0
611
Member Avatar for Tunnleram

Can you show an example of your code? Also, if you add the "selected" attribute, that value will be preselected. <option value="myValue" selected>My Value</option>

Member Avatar for Tunnleram
0
228
Member Avatar for nerden

>If you run as normal user or local admin without "run as administrator" it won't access the event logs at all Since Vista, regardless of the account you use to log into a computer, running programs are done using regular user priviledges. You can run programs using "run as administrator" …

Member Avatar for nerden
0
2K
Member Avatar for criswengski

Try powering it on without the battery plugged in, just straight from the electrical outlet. If that doesnt work, you could have a bad powersupply or bad motherboard.

Member Avatar for criswengski
0
278
Member Avatar for diya45

You need to store a few details in your database. To start, you need to create a relationship between users, employees and their managers With regard to the approval process, you need to store approval information about the uploaded file. This could be represented in a database table field as …

Member Avatar for JorgeM
0
263
Member Avatar for davy_yg

Here is a sample of a simply multi-level navigation menu. It is very similar to the one displayed in your picture. you can easily modify the CSS to have it match your site. [Multi-level Navigation Menu using CSS](http://www.itgeared.com/articles/1420-css-multi-level-navigation-menu-tutorial/) ![e8bea41e052e918fc16d2ad6cd152984](/attachments/large/3/e8bea41e052e918fc16d2ad6cd152984.png "e8bea41e052e918fc16d2ad6cd152984")

Member Avatar for davy_yg
0
130
Member Avatar for arunmarvel5

Your PC can only be as fast as its slowest component. The problem with your PC is likely involving the hard drive. Its possible that it is fragmented, or you have something running on your system that is requiring costant use of the hard drive. Because you've mentioned that you …

Member Avatar for DM Galaxy
0
143
Member Avatar for patk570

You can do this with JavaScript or jQuery to check it client-side, but most importantly, you should also check server-side once the form is submitted because a user can bypass the JS/jQuery validation by disabling JS in their browser. You can see an example of something that is related to …

Member Avatar for patk570
0
109
Member Avatar for frefre.ewfewf

Both URLs seem to produce a similar experience, as both show you a pop-up when you access the sites. Is that the social traffic pop you are referring to?

Member Avatar for JorgeM
0
71
Member Avatar for arnel.montallana.3

Your best option is to purchase a Hotstop (MiFi) device. If you want WiFi, pay for it. People that work hard for the things they have dont appreciate people like you that take things that dont belong to them. With regad to getting help to hack into wireless networks, you …

Member Avatar for JorgeM
-7
206
Member Avatar for Black_Lion

The runat makes the asp or html elements accessible for you to manipluate via asp.net. It would be easier to see your code as a whole, but just curious as to why you are mixing asp.net server, web controls and HTML elements together? For example, why use one html element …

Member Avatar for JorgeM
0
782
Member Avatar for arctushar

Ok, what do you have so far as far as HTML code? Upload that or provide the URL, or put your code on jsfiddle.net.

Member Avatar for JorgeM
0
189
Member Avatar for SirMahlon

Have you looked at your source code? Is it embedded somewhere in an include file or all of your pages? Do you pull data from a datasource like a DB table and maybe this your site was compromised by SQL injection? If the text above is just displayed only your …

Member Avatar for prixat
-1
173
Member Avatar for nashy13
Member Avatar for nashy13
0
528
Member Avatar for xxmp

>Couldn't resolve MX records for domain gmail.com. this is an indication that the system was unable to figure out where the mail server(s) for gmail.com are located. Does this system have its client DNS settings correctly configured? I dont know JSP very well, but I've never seen an instance where …

Member Avatar for JorgeM
0
332
Member Avatar for de Source

So what issue are you having? Not sure exactly what you mean, but In any case, I would think you are missing a comma (and apostrophe at the end) in your second SQL example.. `sqlString = "SELECT '"+ Col_New.text +"', PID, Name, FName FROM Tbl_Products WHERE PID = '" + …

Member Avatar for M.Waqas Aslam
0
302
Member Avatar for kamilacbe

A 404 error means page not found. That's an indication that the URL you typed does not match up to a file that the web server can find in that location. Based on the URL, that means from the ROOT of your website, there is a folder called httpdocs you …

Member Avatar for JorgeM
0
111
Member Avatar for NettSite

Its common to try to create a sleep or delay, but in JavaScript, the setTimeout function is not used in the manner that you are attempting. With the setTimeout function, you can create a delay, but that does not stop the rest of the code from executing. The setTimeout() method …

Member Avatar for gon1387
0
4K
Member Avatar for ss125

> I don't know how this will be handled in normal ASP.NET (WebForms). If you are using ASP.NET web forms, you can use the URL Rewrite module to help you with this. What i would invision is that you need to direct all of you traffic to one page, then …

Member Avatar for ss125
0
369
Member Avatar for ehpratah

So, here's another approach... use a select statement to select records from another select statement..For example.. `select * from (select * from table1 where sDate BETWEEN 'mm-dd-yyyy' AND 'mm-dd-yyyy') where sTime BETWEEN 'hh.mm.ss' AND 'hh.mm.ss'` So this is just an example, but it should give you an idea on how …

Member Avatar for ehpratah
0
165
Member Avatar for My2cents

There are various solutions you can implement. It depends on the end goal or vision for your network. Each design will have a different config. If you want to run both devices as routers, you will need at a bare minimum, to create static route(s) on the edge router ( …

Member Avatar for CimmerianX
0
418
Member Avatar for techmantrasus
Member Avatar for sanketgandhi876
Member Avatar for darkofpain

Please prove additional information regarding your question or issues/errors you encountered.

Member Avatar for darkofpain
0
156
Member Avatar for Malymieczek

Your default.aspx sample above appears to be missing the page declerations which should be the first line of code. Something like... `<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>` Other than that, I tested your code, with the exception of the database related code, and everything worked as expected.

Member Avatar for ss125
0
289
Member Avatar for hapiscrap

The last div element should not be expressed as a singleton type element. <div class="col"/>

Member Avatar for hapiscrap
-1
195
Member Avatar for Daphumlest

You have reference to two different functions. I only see this function: function compareSentences() I don't see a function called checkSentence().

Member Avatar for JorgeM
0
1K
Member Avatar for Pheyishayor
Re: exe

What have you tried to do so far that isnt working for you? errors when compiling?

Member Avatar for DM Galaxy
0
98
Member Avatar for GlenRogers

The session variables should be available unless the browser window is closed and/or there is session inactivity. Maybe seeing your relevant code would provide some insight into what's going on.

Member Avatar for mmcdonald
0
171
Member Avatar for timmyjoshua

I think you mean that you need to connect to a database using C#. What database platform...MSSQL, MySQL, etc.? you'll need to provide additional information and some put reasonable effort to get the best guidance.

Member Avatar for JorgeM
0
114
Member Avatar for davy_yg

>Will apache experienced problem for a database that required 500 GB of space can you clarify what you mean by this question?

Member Avatar for JorgeM
0
105
Member Avatar for arun.mmassy

You may not be aware but XP's support ends next April. In any case, here is a video tutorial on installing XP. http://www.youtube.com/watch?v=sZvzCvpMoPA

Member Avatar for Everyauction
-1
181
Member Avatar for christin_1

I dont see any elements below your footer. It's black because you applied a background-color of #000000 (black) to your body element. I assume you are asking about this because you want your footer to be placed at the bottom of your page? If so, here is a summary on …

Member Avatar for jrewing
0
189
Member Avatar for brandon66

definately the loop is the way to go.... to give you a hint... you may want to re-ID those `li` elements and give new IDs such as li1, li2, li3, etc... there are different methods to approach this problem, but the various options will all use some form of a …

Member Avatar for brandon66
0
279
Member Avatar for suku73
Member Avatar for devianleong

I think you have it backwards... Dont you want your visitors or links to have the more friendly version.. say: www.example.com/abcdef and then you want that to be mapped to a page user.php and display user information? If so, that's a **rewrite**. However if your users are accessing www.example.com/user.php?id=1 and …

Member Avatar for devianleong
0
672
Member Avatar for blh9783dw

Open the disk management console. See if you can see the drive listed there. You may need to initialize it, but will definately need to create the appropriate partition(s) before you can format it.

Member Avatar for greenknight
0
274
Member Avatar for Reverend Jim

When you go into the CMOS setup is there a unique serial number present? I'm not familiar with the Dell laptops but i know for a fact that HP servers have unique serials that tie to the actual motherboard seriall.

Member Avatar for Reverend Jim
0
186
Member Avatar for Ancient Dragon

Dani- what happened to the response that letting users change the UI is against rules according to the UI Rule making people.... That's what I learned this week!

Member Avatar for gerbil
0
202
Member Avatar for JohnCharles

Just some additional info to clarify some things that may help. What I'm reading here is that when you say "override" you really mean that what ever host name to IP mapping you have locally, you want that to take precedence over the records defined in the DNS zone. So …

Member Avatar for JohnCharles
0
309
Member Avatar for andreea.leau
Member Avatar for manojsekar

I would believe that the easiest approach is not to try to create a solution to search against the gridview, but simply use the same datasource that populated the gridview. In other words, when a user types in a word or phrase into the textbox, on the click event (server …

Member Avatar for geniusvishal
0
366
Member Avatar for rdeveloper1

All you need to do is establish the session variable then assign th value to this variable. The session variable can be accessible until the user closes the browser or after 20 min of inactivity (default, but configurable). MSDN (Microsoft) has a really good article on this with examples. [ASP.NET …

Member Avatar for geniusvishal
0
131

The End.