1,828 Topics
| |
Hey everyone, my issue is a little strange, I have a form that has checkboxes, and depending on the selection, a textbox might appear for further info. I want to loop through the controls that have been selected, if it's only a checkbox than just add the Value of the … | |
I cant load the image from database please help.. [CODE]strsql = "select top 1 id,shape from table" set rsgetimage = server.CreateObject("adodb.recordset") rsgetimage.open strsql,application("connectionstring") Response.Expires = 0 Response.Buffer = TRUE Response.Clear Response.BinaryWrite(rsgetimage("shape")) Response.ContentType = "image/png" rsgetimage.close [/CODE] it just display an x icon - thanks | |
Hi there, i got stuck with this problem!!! I have 2 drop down list, the first one come from the table "categorie" and till here no problem, the proble is that i would like to generate the second drop down list , which come from the table "subcategorie" beacause of … | |
Hello! I am making a simple web application with a database. I want to show all the members from a specific group. The group is selected in a drop down list which is populated from my sql database table tblGrupper. I have managed to populate a GridView with the groupID … | |
Hello all; I'm having a heck of a time trying to resolve an issue (and thus far Google has not yielded the answer). I have a web application that invokes a 3rd party application to display a PDF page. Everything runs smoothly on Windows 2003, but now that I am … | |
Hi, I'm formatting a column in datagridview to "C" i.e. currency. [CODE] dgcColumn1.DefaultCellStyle.Format= "C"; [/CODE] I want to format the values for this column to nearest round no. For example, If user enters within $30.00 to $30.50 it will get formatted to $30 If user enters within $30.51 to $30.99 … | |
protected void Button3_Click(object sender, EventArgs e) { GetRandomPassword(); } public static string GetRandomPassword(int length) { char[] chars = "$%#@!*abcdefghijklmnopqrstuvwxyz1234567890?;:ABCDEFGHIJKLMNOPQRSTUVWXYZ^&".ToCharArray(); string password = string.Empty; Random random = new Random(); for (int i = 0; i < length; i++) { int x = random.Next(1, chars.Length); if (!password.Contains(chars.GetValue(x).ToString())) password += chars.GetValue(x); else i--; … | |
Hello All , I am working in a project in which I have been asked to use Telerik Gridview control. I was curious to know that why should we use Telerik Controls when we can do the same thing using ASP controls. Like in gridview the collapse and expand feature … | |
Hi there, i would like to generate a kind of slideshow that will change photo every 10 seconds, with the photos that are site in my folder = "/diaporama" i have all the name of my photos in a database and the name of the table is "photodiap" and the … | |
Hi Guys, I am happy to be part of our group here.... I need some clarifications in Ip Camera Streaming.... I have a webpage ie displaying live camera streaming video and control buttons(left,right,up and down) in one aspx page. My problem is when i click any one of the button … | |
Hi, I am trying to define a 'null' LINQ Table as a global variable and then use a switch statement to deturmine what the Table should be. I am having problems defining the datatype and also assigning values to it. Hopefully the code below will explain better. [CODE] System.Data.Linq.Table table; … | |
ive a dynamic dropdownlist, which items are retrieved frm db. but when i select an item from the dropdownlist, the item does not stay selected instead the dropdownlist make a postback and stay as default value. wad shd i do? is there any mtd to get d value selected? THANK … | |
Hi, I am working over a ASP .NET application and SQL server database. The databases i m using is huge and takes time while updating or generating report by my ASP .NET application. As the reporting and updating require some calculation, if the user presses ESC button or Back button … | |
I'll try to keep this short, and to the point. I've set up a Windows Home Server 2011, running MS SQL Server 2008R2 Express. I enabled TCP/IP protocol on 1433 static, and named pipes (no changes to named pipes). Remote connections work no problem via remote SQL Server Management Studio. … | |
Hello everyone, I have a problem with an ASP porgram and I will be very glad for your assist. In the database, I have table (BOK) and column (STATUS), this column is a databite with only 1 and 0 values. I have two checkbox in the HTML code. This work … | |
Hi - I have a website that is written in HTML/Javascript/ASP Classic and utilizes a MS Access 2007 Database (*.accdb) - The site works great but has not been published yet becaause I am having a problem getting to my registration page where the user will create a useid and … | |
Hi all! Does anybody know a cool and cheap site where I could host my web application (jsp+Mysql)? Thanks in advance! Kind Regards | |
I work for a small warehouse management software company and we were looking at dropping DotNetNuke for our inventory management portal and switching to Sharepoint(myself never thought of Sharepoint as an option). I was wondering if anyone has some insight on External Sharepoint sites as far as pros/Cons. | |
Hi! I want to get field name and table name from same textbox, for example user enters "name student" and click search means it display the name field from student table... Please Help Me to do this... Thanks Regards! ~G.Arun Prasath~ | |
[B]Hi I am using asp.net with c#.net my requirments is when i click the button event open the browser anyone help with me[/B] | |
Please i need help am newbie in asp, am trying to code a login page in which after user login all the user information will display in the success page i tried the following code but am not getting result. help me out pls member.asp <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <%option explicit%> <% … | |
Embarrassed to say how many hours I've burned on this--am hoping someone can point me down the right path. This is more a conceptual question than a straight coding one. Building a web app to enable people to reserve stuff where I work. One of the pages uses a [URL="http://jqueryui.com/demos/datepicker/#date-range"]date … | |
Hello! I would be grateful if somebody can advise me how I can build site same as [url]http://www.guide2marbella.com/property/[/url], namely, I want to creat same search form on my site where I can search items by location, etc. I am very new to web development and know only HTML and CSS. … | |
| |
Hi, I am currently taking care of a website that goes back to 1997 and mostly all programmed with Asp 2.0 and vbscript, while i keep the pages in Asp 2.0 when i have to update them, this week i had to implement some new pages, and since we are … | |
Hi Looking for some general advice: I have taken over support of a large and complex web site, which uses multiple Access databases. At present it makes use of the MS Jet database engine (Provider=Microsoft.Jet.OLEDB.4.0). (as well as MySQL, used in a Snitz forum). After solving many specific problems I … | |
I want to just bold and underline the (anchor) link when it was clicked with the help of jquery....But didn't know of how to do it.... Here is my code: [CODE] <script type="text/javascript" language="javascript"> $(document).ready(function () { $("a").click(function () { alert("Hello"); // $('.body_text').css('width', '100px'); // $('.body_text').css('text-decoration', 'underline'); // //this.addClass('makebold'); //$(this).toggleClass('makebold'); … | |
Hello, I would like to create a small procedure that fetches the names of the columns of a table and uses them as a variable name. Let me explain. TableA Ref, FullName, FirstName, Age, ... 1, Jones, Charles, 32 2, Bridge, Dom, 26 3, Goodtime, Jack, 46 ... And I … | |
hi,,, I am learning the asp C# web application. so I really don't have enough knowledge to develop code for blogging. I want to create a web page where my log in members can create their own blogs. and post comments on that. so can u please help me out. … | |
Hai Everyone In my asp.net application i am creating a user with user name and password, with these username and password i want to create a database user. Example: If i create a user in my application like username: sam password: abc then an account to be created for above … |
The End.