13,153 Topics
![]() | |
can any one suggest project topics in ASP.net for final year????please give some suggestions..... | |
Hi All, I have simple form with few aspx controls like dropdown, name, address, contact, email etc.. When i click on button these has to send to the server and thank you page has to come(need asp code only). Can any body help on this. Thanks in Advance. | |
how to create a menu same like daniweb. i am new to web designing. please help. | |
protected void btndel_Click(object sender, EventArgs e) { SqlConnection con123 = new SqlConnection(); con123.ConnectionString = @"Data Source=viral\sqlexpress;Initial Catalog=mydata23;Integrated Security=True"; string qu1 = "delete from table_1 where (username='" + txtuser.Text + "', password='" + Txtpass.Text + "')"; SqlCommand dsa = new SqlCommand(qu1, con123); con123.Open(); dsa.ExecuteNonQuery(); con123.Close(); Response.Write("deleted"); } SqlConnection con123 = new … | |
i cannot install microsoft .net framework on my laptop. please help :) this is on the log file: OS Version = 6.1.7600, Platform 2 OS Description = Windows 7 - x86 CommandLine = C:\cd9eff67eee9832dce41e970dae2\\Setup.exe /x86 /x64 TimeZone = Pacific Standard Time Initial LCID = 1033 Using Simultaneous Download and Install … | |
I'm trying to get the AjaxFileUpload control working and it's giving me some strange problems. It looks like when I call SaveAs the file is just being deleted and not saved in the directory I specify. Protected Sub AjaxFileUpload1_OnUploadComplete(ByVal sender As Object, ByVal e As AjaxControlToolkit.AjaxFileUploadEventArgs) Handles AjaxFileUpload1.UploadComplete Try Dim … | |
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script src="http://ajax.googleapis.com/ajax/lib… </script> <script type="text/javascript"> $(document).ready(function () { $("button").click(function () { $("p").css("background-color", "yellow"); }); }); </script> </head> <body> <form id="form1" runat="server"> <h2>This is a heading</h2> <p style="background-color:#ff0000">This is a paragraph.</p> <p style="background-color:#00ff00">This is a paragraph.</p> <p style="background-color:#0000ff">This is a paragraph.</p> <button>Return background-color of p</button> </form> … | |
OK, so I have to concatenate string and value from variables. It goes correct until variables come into play... What am I doing wrong? The error I get is Expression Expected... toHash = "Hello" toHash &= "randomVALUEBGCOLOR=#FFFFFFrandomVALUEBRAND=VISArandomVALUEBUTTONBGCOLOR=#9BCC83randomVALUEBUTTONTXTCOLOR=#000000randomVALUECANCELURL=SOMErandomSITE/betaling4.aspxrandomVALUECATALOGURL=SOMErandomSITErandomVALUECN=" toHash &= Session('fac_cntnaam_tsv') & " " & Session('fac_cntnaam') & Session('bdr_fac_cntnaam_tsv') & " " … | |
This is an example of Inserting and Retrieving data from xml file. [code]private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid(); } } private void BindGrid() { ds = new DataSet(); try { ds.ReadXml(@"c:\inetpub\wwwroot\WebApplication10\XMLFile1.xml"); DataGrid1.DataSource = ds; DataGrid1.DataBind(); } catch(Exception … | |
I have created an ASP.NET application in vb.net Use a Ubuntu 13.10 Server with Apache Tomcat No i want deploy (install) this application on this server. Is this possible? If so, how? What are the consequences? Thanks, Andre | |
I have created a asp.net web application for running a video in an external video player (ffplay). I have given the path of the .exe file. My application is working fine in VS2012. But im not able to host it in IIS. Code: Process ffplay = new Process(); //creating process … | |
Hi I've ran into this error and have been looking at it for about an hour now and can't get it fixed. cmd.CommandText = "INSERT INTO Appointments (ClientName, Period, Time, Treatment, Stylist) VALUES (@cName, @cDate, @cTime, @cTreat, @cStylist)"; cmd.CommandType = CommandType.Text; cmd.Parameters.AddWithValue("@cName", txtCName.Text); cmd.Parameters.AddWithValue("@cDate", txtDate.Text); cmd.Parameters.AddWithValue("@cTime", DDLTime.SelectedValue); cmd.Parameters.AddWithValue("@cTreat", DDLTreat.SelectedValue); cmd.Parameters.AddWithValue("@cStylist", … | |
hi i used global variables on page_load event of my homepage. this is because these variables are used by other pages. i tested my page like COPYING THE URL then CLOSED ALL THE IE WINDOWS. and when i re opened IE, and PASTED THE URL I COPIED, it seems that … | |
I keep receiving this error and I'm unsure how to fix it. The code I have is protected void AddUserToDatabase(String username, String Password, String Email) { OleDbConnection conn; OleDbCommand cmd; using (conn = new OleDbConnection(ConfigurationManager.ConnectionStrings["ProjectDatabaseConnectionString"].ConnectionString)) { using (cmd = conn.CreateCommand()) { cmd.CommandText = "INSERT INTO Users(username, password, emailAddress) VALUES(@username, @password, … | |
Hi all, I'm new to SiteFinity Thunder and wanna know how to use it in my current asp.net c# mvc project. I wanna use custom layout for my homepage using Sitefinity Thunder. Currently I've made registration/logiege | |
1)On receipt of the signed MSA back from the customer, the original should be sent to the legal representative and a controlled copy should be sent to the TM/Account Manager by ___________. B D M DM 2)Runtime Profiling is used by which category of users? Developers and System Administrators Configuration … | |
Hi I am new to using Microsoft Access as a database for Visual Studio (previously I used SQL Server) so I am unsure how to go about the usual tasks such as accessing the database. At the minute I am trying to write code to check if a username already … | |
Hi, Im trying to download zip files from Artifactory, I have used webclient, it is working fine from my system which is well connected to internet. but when try from some lab network(intranet), its not wokring fine. some times it gets stopped in the middle. So what is the best … | |
Hi, I have a gridview that takes information from a MS Access database. The gridview is populated with information that is inserted into the database via a form. I would like to give the user the option to edit the row's if there is a mistake or something needs to … | |
Hi...i want use alert message in code behind....but i dont to fire this message on button click ...i want that this alert message display base on some if condition....can any one help me with example?? | |
i want to create a new data base of existing database.. the name of database willbe given by textbox. | |
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data.SqlClient; namespace Practical1 { public partial class Exercise1 : System.Web.UI.Page { string cs = Global.CS; protected void Page_Load(object sender, EventArgs e) { } protected void btnSubmit_Click(object sender, EventArgs e) { if (Page.IsValid) { string user = txtUser.Text; … | |
Hi! Iam new with this, and trying to explore and understand the ASP.NET C#. I got a little bit problem regarding control statement specifically using the if statement. What I really wanted is to have two options in navigating windows page. For example, if the other column name "Remarks" is … | |
I am having problems displaying a map. Data in ListView is showing on the page but the map is missing. I would appreciate some help. Here is what I have so far: The following pieces of code are in MyDirectory.Master page: <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> function init_map(map_canvas_id, lat, lng, zoomLevel, markers) … | |
Hi to all, I have a problem with ASP.NET in Visual Studio. I made a page that is organised as a table (one part for links, one for content...). How can I select button that is nested in table (in table cell) in Visual Studio in a design view.? Always … | |
Hi All, I have a aspx page with few controls. When i am using reset button to reset the form its working fine before saving, its notworking after save the form. Can you help me on this. i used OnClientClick="document.location.href=document.location.href;" for the Reset Button. Thanks in advance. | |
Hi all, Iam using [B]vb.net and WPF[/B] In a wpf window im showing a datagrid in the load event while in the load event itself,i need to count grand total amount from a single datagrid column and add it to a textbox in same page . My page looks like … | |
Hi Everyone I am developing a website. In that i used Gridview with a lot number of column with header text manually using boundfield.I put the Horizontal and Vertical scrollbar using css code. But I would like constant header when i scroll vertically but the header will be scroll horizontally … | |
Hello Guys i'm trying to stream a webcam feed using C# i searched on the web and didn't find a standard RTP library for dotNet so my question is: is C# the way to go or i should use Silvelight or Flash ... PS. i want the stream to be … | |
public class PrintHelper { public PrintHelper() { } public static void PrintWebControl(Control ctrl, string Header, string Date) { Label lblHeader = new Label(); lblHeader.Text = "MSJ Bank Financial - " + Header + " (" + Date + ")<br/><hr/><br/>"; PrintWebControl(ctrl, lblHeader, string.Empty); } //Print Method public static void PrintWebControl(Control ctrl, … |
The End.