13,153 Topics
![]() | |
Good Morning, I am this --- close to turning in a final project and my instruction states that for my asp.net vb application that we will need to turn in an executable or runtime. Since my project is .aspx I realize that an executable is not required but that I … | |
Hi, i need to get a users password from my database. I ask the user to enter his username in my textbox called txtUsername and his password in txtPassword. Then I try to use LinQ to sql to get the password. My Code: [CODE]public string GetPasswordHash() { var varPasswordHash = … | |
Hi everybody, I had to synchronize 2 DDL when I clic on a btn. the DDL are on 2 different view. I can access to the second DDl but the value dont change. I do this: DropDownList ddl01 = (DropDownList)this.Parent.FindControl(panelFilterManager.Parent.Parent.FindControl("ddl01").ID); ddl01.SelectedItem.Value = ddl02.SelectedItem.Value; thx for helping me ^^ | |
In Visual Studio 2010, I have a windows forms application frmMain.cs with a ComboBox. From the form itself I can access its value with cmbxYear.SelectedValue. I also have a DataSet.xsd file to bind to an rdlc report to a TableAdapter to present view data. The TableAdapter has a SelectCommand that … | |
please input the code inside javascript. here Enabled is var field declared in javascript [CODE]if (Enabled.trim() == 'False') { document.getElementById('checkbox1').checked = false; } else if (Enabled.trim() == 'True') { document.getElementById('checkbox1').checked = true; } [/CODE] | |
Hello , I am doing a project on Resort Website where I have a module of Room Reservation. I want a code for checking the availability of rooms when user selects arrival date and departure date and clicks check button. database room_details table ------------------ roomno type rate_regular rate_delux rate_suite -------------------- … | |
<table> <tr> <td> </td> <td> <asp:Label ID="Label5" runat="server" Text="Change DisplayName"></asp:Label> </td> <td> <asp:TextBox ID="DisplayTxt" runat="server"></asp:TextBox> </td> <td> <asp:TextBox ID="IdTxt" runat="server" Width="20px" CssClass="supptext"></asp:TextBox> </td> </tr> <tr> <td> <br /> </td> </tr> <tr> <td> </td> <td> </td> <td> <asp:Button ID="EditSaveBtn" runat="server" Text="Save" OnClick="EditSaveBtn_Click" /> <asp:Button ID="EditCloseBtn" runat="server" Text="Close" /> </td> <td> </td> … | |
how to find keyword in asp.net using vb.net????? | |
function showDataRow(rowContainerId) { var childControlsArray = document.getElementById(rowContainerId).childNodes; var StoreId, StoreName, Enabled; for (var i = 0; i < childControlsArray.length; i++) { if (childControlsArray.item(i).id == 'dvStoreId') { StoreId = childControlsArray[i].innerHTML; } else if (childControlsArray.item(i).id == 'dvStoreName') { var subchildarray = childControlsArray.item(i).childNodes; for (var n = 0; n < subchildarray.length; n++) { … | |
I have a crystal report named CR1. Now i want to populate the data from multiple tables into my crystal report CR1. I am using VS2008 and coding language is C# in ASP.net Any help will be appreciated. | |
Environment: Visual Studio 2010, Windows Forms Application, Oracle Database I am trying to use a parameter in a DataSet.xsd DataTable. The query and parameter work fine in Query Builder but gives an error if I try "Preview Data" or use in my application. Error: An unhandled exception of type 'System.Data.OleDb.OleDbException' … | |
Hi everybodies! How increase ProductId inside Product_Table when insert a new product according to following approach? Language_Table: Id Code --------- --------- 1 ka 2 en Product_Table: ProductId ------------- 1 2 Product_Translation_Table: TranslationId Title ProductId LanguageId -------------- ------------------- ------------- ------------ 1 Kompiuteruli 1 1 2 Computer 1 2 3 Radio 2 … | |
How can I detect the click event of the close (X) button at the top right corner of the control box of a form/window? Please note, I don't want to know about CloseReason, FormClosing, FormClosed or stuffs like these, unless they are inevitable. I exactly want to detect if the … | |
I'm new to .NET and having a difficult time deciphering when to use namespaces and where to place "using" clauses. For this one project, I'm trying to develop a .NET page within a web application that has 99% of the pages written in Classic ASP. I started by creating a … | |
hi all i want your help plz am working on a news website and i want a way or code to let the visitors add comments on any news am using asp.net with c# plz help :'( | |
Hello to all, before begin i must say that I'm sorry for my bud english and hope that it not be a problem for understanding whit you. I'm looking for a solution to create a simple background server application that running and live over infinite loop cicle, whit have the … | |
Actually i'm creating web template using asp.net and c#. in my user control page i have to create the table dynamically. i just read the data from XML file then retrieve the name and number of columns and rows of each table. while i'm creating the table i assign the … | |
hello to all. I have a problem. I want to alter a table to add three columns whenever i click a button.But i want the name of the table taken from a drop down list, and the name of the three columns are also taken from either a drop down … | |
Hi everyone, Please help me on this. “Could not load file or assembly 'Newtonsoft.Json, Version=4.0.3.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)”. 'NewtonsoftJson.dll’ assembly is required for posting to twitter .The version used is 4.0.3.0. … | |
I am using Visual studio 2008 and trying to upload files. Though the file uploaded can be seen through windows explorer, it is not shown in solution explorer. i am using the following c# code: [code] String fnm = FileUpload1.FileName; String cp = Server.MapPath("~/Uploads/"); FileUpload1.SaveAs(cp + fnm); [/code] | |
I want my File upload control as read only, so that no one can edit file upload text box. However I could select file using browse button. Write code | |
[B]Hi all, I would ask about fileUpload control, in asp.net 2008 can I know how remaining time to upload file successfully without using threading and without using javascript? the progress bar not problem, the problem that faced me is how to know how much file size was uploaded...[/B] | |
[code]function showDataRow(rowContainerId) { var childControlsArray = document.getElementById(rowContainerId).childNodes; var StoreId, StoreName, Enabled; for (var i = 0; i < childControlsArray.length; i++) { if (childControlsArray.item(i).id == 'dvStoreId') { StoreId = childControlsArray[i].innerHTML; } else if (childControlsArray.item(i).id == 'dvStoreName') { var subchildarray = childControlsArray.item(i).childNodes; for (var n = 0; n < subchildarray.length; n++) { … | |
I am having a problem and it is probably quite simple and I am missing it. For my C# and ASP.NET programming class, I am creating a form for someone to sign up for an event online. It has the First and Last name fields, email and confirmation email fields, … | |
Hello programmers. Please am currently working on an ASP.NET website. The major work on the website is all about images uploads by the users, am going to be dealing with lots of image uploads from the user. But the problem is that am still unable to come up with the … | |
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.Data.Common; using System.Data; using System.Data.SqlClient; namespace modalwindow { /// <summary> /// Summary description for WebService1 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment … ![]() | |
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 … | |
Hi.. I'm developing a website for the first time in visual web developer using asp.net and sql sever database. I have designed my pages and master page. I have created my sql server database too. Please could you help me how to connect the database to asp.net master page? Also … | |
Hi, anybody could help me how to create video thumbnail in asp.net,c#? | |
Hi all, I've been using this type of code to pull out a single value from my SQL database but I can't help thinking that there's a simple command I'm not using: [CODE] strSQL = "SELECT MAX(Stage) FROM Visits WHERE ScheduleRef = 22" FinalStage = dl.getPRISMdata(strSQL).Tables(0).Rows(0).Item(0)[/CODE] [CODE]Public Function getPRISMdata(ByVal strSQL … |
The End.