5,277 Posted Topics
Re: In your <itemTemplate> section, you can include a link to the location where the complete article is located. Since this link will be built dynamically, you need to include the article ID or full URL which I would imagine that you are storing in a database table. Here is an … | |
Re: What problem are you having exactly? No reason why it shouldnt install that I can think of... You boot from the CD, the setup starts...how far do you get? | |
Re: Here is a step by step guide. http://support.microsoft.com/kb/317604 But why do you want to store session info in a DB? Mor about SQL session mode start. [http://technet.microsoft.com/en-us/library/cc753897(v=ws.10).aspx](http://technet.microsoft.com/en-us/library/cc753897(v=ws.10).aspx) | |
Re: Well, i'm extremely curious...and I'm stuck. I'm at the point where i understand the general concept and that your set of numbers can be stored as a binary number (right to left), converted to a integer? [1,1,1,1,1, 1,0,0,0,1, 1,0,0,0,1, 1,1,1,1,1, 1,0,0,0,1] would be stored in binary as 1000111111100011000111111 which does … ![]() | |
Re: You may want to try Lenovo, at least that is where I would start. I sincerely doubt that Micorosoft will provide you with XP even if you have the product key. Keep in mind that support for XP expires April 8, 2014. Also, check on your lenovo, even if they … | |
Re: >Can any one tell me how to get more traffic to a website Your content is the number one component in getting more traffic. If its unique, good, fresh and relevent to your community's interest, the social aspects will take care of themselves. People will want to share and repost … | |
Re: If you already have jQuery integrated into your site, you can include the UI library and use DatePicker... http://jqueryui.com/datepicker/ If not, there are tons of free javascript date pickets out there online. You only need a small date picker correct? | |
Re: According to this MSDN article, you have to test by writing then reading the cookie. If you cannot read the cookie you wrote, you assume that cookies are turned off in the browser. Then, you can display a message to the user about the problem. http://msdn.microsoft.com/en-us/library/ms178194.aspx Read the section: Determining … | |
Re: yes, this is doable using simple javascript. I had worked on a blog for a friend a while back and helped with a few lines of javascript to resize the shorter column to match the size of the longer column. there's a demo you can look at with the source … | |
Re: It would help to see your code. Its challenging to guess what is happening based on a description. >after a postback, my dropdownlist is empty. Are you doing something to clear the dropdown at page_load? If you are building the drop down at page load, you may want to detect … | |
Re: >I'm new to Wordpress and from what I'm understanding if you're making a website with it, you don't have to write(or know(?)) code for anything unless you're making your own theme or plugin? Well, yes these content management systems are designed so that once they are implemented, content can easily … | |
Re: Do you mean the picture is being uploaded without a postback and you want the picture to be updated automatically on the page once the upload is complete? More info is needed, I agree with paulkd that you may want to tell us more about the process itself. | |
Re: So with regard to validating, there are several options. 1) use the required attribute (HTML5). However, only newer browsers will support this attirubute. If I'm not mistaken, no support for Safari. So this may not be very viable. 2) use javascript. A simple function to get the value of the … | |
Re: Hello valued members- Your current converstation is now off topic. Please continue your converstation about your extrenal, unrelated product either in a chat session or in a new thread within the Business Exchange category. Users that arrive at this thread would be interested in the original topic. thank you. ![]() | |
Re: Yes, you can plug a hub in between the target computer and the switch port and then plug the computer that has wire shark into that hub. Since a hub will send packets on all of its ports you'll see all traffic and can capture it. Of course, if you … | |
Re: >5160 Dell loaptop fails to boot past say 75% 75% past what? does it clearly pass the Power On Self test (POST)? Do you see Windows trying to load? What operating system are you working with? | |
Re: In asp.net, the closest control is the GridView, in the update mode where you can access the various controls within the rows of the GridView. `<asp:gridview />` It sounds like you are describing a table you can move from cell to cell and update client side without a postback such … | |
Re: What is the actual error? Also, you are sure that an acceptable value is stored in ddlYear.SelectedItem.Text? You should test your SQL query without the use of variables and textbox.Text first to make sure your SQL is good. For example.. what happens if line 9 is like this... cmdRowCount.Parameters.AddWithValue("@current", Convert.ToDateTime("1/1/2013")); | |
Re: Wow, thanks for that very detailed post you submitted. To create a sticky header, you can use the position:fixed style property me apply that to your topbar component. It would be more helpful if you could post a sample of your relevant code so we can provide better guidance. | |
Re: If you look at your javascript, you are missig a closing brace "}" at the end. When I copy your code and run it, it works fine. Keep in mind that with your script, you are only checking the first input element. You'd have to modify this to ensure that … | |
![]() | Re: Here is some info regarding linking to DaniWeb. http://www.daniweb.com/stats/get_badge ![]() |
Re: >Why would my html file need to be downloaded Can you clafiy what you mean by downloading the file? Is the file hosted on a remote web server? when you access the page, it downloads instead of displaying? What do you mean? | |
Re: I wouldn't necessarily upgrade unless I enjoy the aspect of tinkering or there is a new feature that I need. Take a look at what's new: http://technet.microsoft.com/en-us/library/dn303448.aspx | |
![]() | Re: Lots of members have links included in their signatures. Use the same mark down syntax as you would in a post. Links section --> http://www.daniweb.com/community/syntax ![]() |
Re: The first example is fine. If you want at least say 8 characters then... if(userInput.length >= 8 { On that site, they show you two different approaches with regard to checking... The first is basically whether the length is greater than min AND less than the max number. If the … | |
Re: >but we can't use them at home because of the licensing Why not? Microsoft has a Free version called Express Edition which allows you to install without having to purchase a license. Its a great choice for personal development. http://www.microsoft.com/en-us/sqlserver/editions/2012-editions/express.aspx | |
Re: Your DNS management tool should give you the ability to create a CNAME record for the domain name itself as well as any record in the domain. It is possible to also create a wildcard record so that any host in that domain maps to one alias record or IP … | |
Re: that's a pretty broad question. Is there something broken you are trying to fix or you just want to learn about computer hardware in general? If your goal is to learn about computer repair, I find this book to be very valuable in your toolbox. This is the book I … | |
Re: I think you may need to provide additional details. I have a general idea of what you have been working on, but I'm stumped at the moment on this one. There are other members here that may be able to assist but I think more info about the scenario may … | |
Re: It should wrap normally... you can place a div element the h3 element, or dont use the h3 and use another approach instead unless you are using the h3 for SEO purposes and not presentation? If you dont care about the SEO, you shouldnt use h3 for the font size. … | |
Re: Have you tried using the [javascript history back](http://www.itgeared.com/articles/1330-javascript-window-history-object-tutorial/) object? Example... <script> function back(){ window.history.back(); } </script> <a href="javascript:void(0);onclick="back()">Previous Page</a> | |
Re: Assign a class to the cell (td) in lines 3 and 11. Then apply the vertical-align: top; So for example if you assigned the class "top" then use this CSS... td.top {vertical-align: top;} | |
Re: I'm not following your code very well... but in any case, why dont you try to figure out what the actual value is of responsecode via a response.write or something similar so you can see its value through the process. | |
Re: I think one way is to have an extra image displayed as none. On mouseover, execute a function to display the image, but update its source of that image you just finished mousing over. I have a simliar example you can look at. The difference here is the position of … | |
Re: So based on your troubleshooting so far, it seems that you are definately having a problem with the Wifi adapater on the laptop since you can connect via wire and your neighbors laptop works on your network. Some things to check.. Laptops allow the ability to shut the wireless off … | |
Re: Anything is possible with enough time and money. However, why would you bother with this nonsense. What I believe is that if technology was worth it and provided a means to generate real income, I don't think anyone would share it or sell it to anyone for $20 per month. … | |
Re: You can create a static class with static members. http://msdn.microsoft.com/en-us/library/vstudio/79b3xss3.aspx Call the static method from your page. For example... lblcompname.Text = ClassName.GetName() The code to get the computer name is in the static method. It returns the computer name.toUpper() | |
Re: You can disable the UAC in control panel but I wouldn't suggest it since it will allow malware that interacts with the logged on user's access to make changes without you knowing. A quick search online revealed this one option which looks like it would work. Create a scheduled task … | |
Re: It depends.... What are you using to fill the gridview? Are you using a SqlDataSource control? Or, when the OnRowUpdateEvent occurs, do you open a connection back to your database and execute a SQL Update statement? | |
Re: There's no need to continue bumping your thread... it doesnt appear that anyone has a valuable solution for this question as of yet. In any event, based on your question, it appears that you do not want to be prompted when visiting websites and you want to override the behavior. … | |
Re: did you build that chart or is this just an example? Either way, what you are describing is going to have to be done client side. Did you have something in mind or are you just collecting ideas? I dont particularly care for the chart control in asp.net and I'm … | |
Re: Do you have an example of the HTML that is produced for this page? | |
Re: It seems that you may have forgotten to include the doctype decleration for some of your pages. The doctype is still important specifically for IE. When there is no doctype declared, IE goes into quirks mode. You need to simply add the doctype.. It looks like from the link you … | |
Re: Do you have access to the server's OS? If so, you can also develop a .NET app to handle this process if you are more comfortalbe with that, just create a schedule to run this as a routine job. | |
Re: it looks like this page is actually called index.php (http://202.93.143.197/Indonusa/index.php). However, looking at your source code aside from the fact that your PHP doesnt seem to be parsed as mentioned by diafol, your HTML markup also has some problems. For example, you didnt include a <head> section to contain the … | |
Re: Do you mean just to connect your form to a data source, query the DB and display the results in the form? Start with...to test your connection. You need to build the connection string. This string has the information about the hostname of the SQL server. The connection string may … | |
Re: I think it would be easier to handle the showing/hiding client side, not via aspx code but by using jQuery. It will produce a better client experience with no postback. |
The End.