5,277 Posted Topics
Re: better in what regards? Each product serves a specfic purpose. What is better depends on what your needs are. | |
Re: I think you mean `<hr />`. If this is what you are referring to, its actually HTML, not C#. The HR element causes a horizontal rule to be rendered on the screen. | |
Re: @YA RAMSAMKER, As others have indicated, the answer depends on you are developing. You had recently posted an asp.net related question so if you are developing in asp.net, your best bet, in my opinion, is to use Visual Studio. There are free and paid editions. For the most part, the … | |
Re: A partial class is the same class split into different files. | |
Re: I would say that you have too many questions without providing any detail/sample code, etc... You should consider dedicating one thread per question.. My suggestion is to start with your first question. >I need to know how to populate a dropdownlist You can do this from the dropdown list control … | |
![]() | Re: Not all browsers render the same. I've experienced this type of issues before with .png image files. ![]() |
Re: Yes of course. Even though you develop in asp.net, the web server sends back HTML to the browser. You can develop your asp.net pages with a mix of HTML, CSS, JavaScript and asp.net controls. | |
Re: Using HTML only, you'd have to add the logo to each page. Unlike server side scripting languages like PHP, Asp.NET, etc.., there's no template or include file that can be built once and applied multiple times. Do you need help with the logo itself, positioning, etc? | |
Re: The cost of the domain name varies by tld (top level domain). You can get a .info domain for as low as $2.99 for the year, according to their website. With regard to hosting, they also have many options. Rather than me go to their site and copy/paste the information, … | |
Re: There is nothing built into Visual Studio that I'm aware of that will take a windows form app and convert it over to an asp.net web application. There are things that arent going to be compatiable. However, that doesnt mean you have to start from scratch. You can start by … | |
Re: If you use your browser's dev tools (javascript console), you may get a better idea of what the problem is. Errors will be shown there. ![]() | |
Re: You would write it this way so the second method executed after the fadeOut completed. However in this case the hide() is not necessary since the fadeOut() sets the element's display to none when the animation is complete. $( "#clickme" ).click(function() { $( "#fabric" ).fadeOut( "6000", function() { // Animation … | |
Re: >while the active menu point must use the body class what do you mean? can you clarify? | |
Re: You can use return to send back data to the caller. Your code should be updated to this... function apple() { var one = "Hello"; var two = "Orange"; var total = one + two; return total; } document.write(apple()); | |
Re: How is anyone possibly going to tell you which tables you need and which fields will be in each table based on your description of.. >auto parts web store With installation Even before you start the technical development of this regarding your application and data store, you have to first … | |
Re: Sorry for the obvious, but are you sure the field is called "Serial_Number"? | |
Re: What are you trying to accomplish? You want to learn how to build patch cables? If you have CAT5 cable, you can use it to support up to Gigabit ethernet. If you had 10G Ethernet, then you would use CAT6 cables. | |
Re: Ok, so sounds you need to HTML encode the string in the record set... Try using `Server.HTMLEncode(yourString)` Not sure if this will work for the apostrophe. If that doesnt work for you, I would try using the Replace method: `variableName = Replace(variableName, "'", "'")` | |
Re: You are missing the single quotes... AND syl.semester_year = '" + CurrentYear + "' ORDER BY sem.sort ASC" | |
Re: Maybe try a different approach. Im not that familiar with the use of While..Wend. Maybe a Do..Loop would work better. For example... Do While Not rsEmployees.EOF response.write "{label: .................... value: " & rsEmployees("ID") & "}, " rsEmployees.MoveNext If rsEmployees.EOF Then response.write "{label: ................... value: " & rsEmployees("ID") & "} " … | |
Re: Hmmm... If you use this sample code (within your open and close statments) which builds a generic table.., you dont get any data back from the query? <table style="width:500px;"> <tr> <%for each x in oRS.Fields Response.Write("<th>" & x.name & "</th>") next%> </tr> <%do until oRS.EOF%> <tr> <%for each x in … | |
Re: its been a while working with classic asp in this capacity, but how about this... IF (NOT ISNULL(rsUP("Name_Middle"))) THEN Repsonse.Write("Was not NULL") ELSE Repsonse.Write("Was NULL") END IF | |
Re: You validation rule is working as expected. As mentioned by phorce, this part of the rule `(\.[a-z]{2,3})` indicates that a period is required and then 2 or three characters are required and the characters that are acceptable are from lowercase a-z. So an email address ending in gmail.co is definately … | |
Re: If you really want some help here, you are going to need to try a bit harder to provide more information in your question and provide sample code that you are having trouble with. | |
Re: Optimize what/how? all you have provided is a compressed file that contains three class files. What exactly are you looking to do? | |
Re: Most people would include an animated gif so that it appears that some type of processing is occurring. You could display a static message but that would also confuse users if nothing is happening on the screen. They will still believe the app is hung. I prefer something with movement. … | |
Re: >So the thing im wondering is say if the user did not check the checkbox how do i default it that when the user clicks save the theme data is "NO"? Include a conditional statement in your code and see if the "check" was included in the post. You can … | |
Re: When you say length, you mean the number of characters? if so, you can simply create a variable in javascript and assign teh "key" to this string, then just check its length. `yourstring.length` if (!yourstring.length == someNumber) { // its not the correct length, do something... } | |
Re: Take a look at this other daniweb thread. http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/467834/auto-calculate This thread includes sample code and a link to a demo, at least with regard to the creation of the text boxes. | |
Re: >When i press the submit button nothing happens. Any help? Line 10 in your code doesnt reference any existing variable. `data: dataString` | |
Re: You've started this thread correctly by submitting it in the web development category and tagging the thread with the keywords. Unfortunately I know nothing about Python or Django so I can't help you with that. In any case, if you have a question or a topic for discussion, go ahead … | |
Re: You've posted your question in the Hardware and Software forum category. What programming language are you working with so that this thread can be moved to a better category. | |
Re: What you get from your ISP depends on what you buy. If you purchase a typical consumber based connection (DSL, cable, uverse, etc..), the'll provide you with a modem/router box that connects to their network. The WAN port on this device they give you will be configured with a public … | |
Re: >I thought above removing "walls" of computer case leaving only wireframe and only intern, uh, holders for storage, motherboard etc. this would bring more fresh air to hardware I wouldnt remove the any of the internal frames of the case. If the case is designed properly, the design should be … | |
Re: Can you rephrase your question? What string do you want to be able to access and in which class? | |
Re: So, if you are going to be the **only** admin for this web application, then you shouldnt have to worry about implementing any type of roles component. What I would envision, based upon your description, is that when you log in, based on your userId or other unique piece of … ![]() | |
Re: If this is for an asp.net page, as deceptikon has indicated, your code needs to be within a method such as your page load or other appropriate method. Are you trying to port over a console app over to asp.net? Maybe you just poste this question in the wrong forum … |
The End.