13,936 Topics
![]() | |
Hi, I am working on C#. I have 2 dropdownlists(for Year and Month) and a ImageButton. On click of the image button,a calendar is displayed. I want the default month and year of the calendar to be the same as selected month and year from the dropdown list.Also the previous … | |
Hi all, Going to begin learning C# and then ASP.NET and was wondering if anyone knew of any good websites teaching beginner level C# or if anyone has any advice for me before I begin my mission! Thanks in advance! Kyle | |
hi.. I got an error said that ""Unable to find the requested .Net Framework Data Provider. It may not be installed." Currently i follow the book of beginning Asp.net in c# E-commerce .NET 2.0 and i using visual studio 2005 with SqlExpress 2005 Can anyone help me.. Thanks | |
In a gridview I've edited the columns so it only appears buttons, so my question is how can I add the event on that grdview1 for when I click a button doesnt matter in which column. | |
I am working on a web applicatoin that is social networking forum for an institute.But i did not have any experience in asp.net environment.From where i will start this application.As if create a login in page from where a user will login and after login the next page will display … | |
Last month I completed my 3 year IT degree and now I am throwing Cvs for IT companies in my country. but still I am home, sitting duck! So until I find a job,I don't want to waste that time staying @ home...do nothing. so can someone suggest me something … | |
I m facing problem in Update operation,Select operation is completed. To Perform Update operation- 1)Add Class Products 2) Add a new method called UpdateProducts below is the Vb code,but i want to work with C# Code [code] Public Sub updateProducts(ByVal ProductID As Integer, _ ByVal ProductName As String, _ ByVal … | |
I want to show a menu.As u see in websites,wen we move a mouse over the menu item,Drop down menu appears.How to do that? See in Pic on URL [url]http://www.vbforums.com/newthread.php?do=newthread&f=31[/url] | |
I have a web application that I published it on a server. But I have a problem with this published application, the problem is: I have some validators in the pages, these validators work well on some computers but it doesn't run on the other(with the same explorer with the … | |
Hi, I've tried to get the geolocation of the clients IP, with this code: [CODE=vb] Dim rssReq As System.Net.WebRequest = _ System.Net.WebRequest.Create("http://freegeoip.appspot.com/xml/" _ & vl_bContadorVisitasBE.vcConVisIP) 'Crear el Proxy Dim px As New System.Net.WebProxy("http://freegeoip.appspot.com/xml/" _ & vl_bContadorVisitasBE.vcConVisIP, True) 'Asignar el Proxy al objeto WebRequest rssReq.Proxy = px 'Establecer el tiempo de … | |
Explain me the viewstate with the coding?Its too comfusing. Suppose in textbox1.text contains ASP.net & I set EnableViewState to False of textbox,so when i click on button, textbox will still contains the text or not. I see in forums, <input type="hidden" name="_VIEWSTATE" id="_VIEWSTATE" value="/dfdfdfff"/> Where can i see the above … | |
Hello all, i have validations on my form. And a summary validation but my problem is the the summary validation box cannot be clicked. I want the user to be able to click any of the error messages and it takes them to the textbox of which the error comes. … | |
Hi I use Visual 08 ASP.NET C# and JavaScript I would like to do the following validation on a text box the length MUST be 12 characters long in the following format LLLLLLNNNNNN Where L = Letters N = Numbers if the users input does not match the required format … | |
I will be developing an ASP.net website shortly and would like to know what the best environment to work with is. I would like to know what software I can use for coding your ASP.NET sites? (Is it dreamweaver or microsoft web developer) Also I would like to run a … | |
Hi, Greetings! I have a problem w/ posting my form onto an internet payment system called enets. they told us that we need to pass them 3 values: amount, txnRef, mid and also, they told us the our system needs to be posting from our domain, site.com lets say. my … | |
hello all, as i know that if we don't want to specify the static path of databse then , we can use "Server.mapPath" like,( in any .aspx page ) [code] str = "Data Source=.\\SQLEXPRESS;AttachDbFilename=" + Server.MapPath("student1.mdf") + ";" + "Integrated Security=True;User Instance=True"; [/code] but my question is that , why … | |
hi i'm using asp.net to create an online order form. i have 4 textboxes and i want to save the information from the textboxes to my database on click of a button. dbName = BikeOrderdb txtQty, txtBikeId, txtBikeName, txtPrice [B]Can you please help me with the code for connecting textboxes … | |
Hi. on my form, the field are entered depending on availability. some fields are mandatory while others are optional. The mandatory fields are inserted into one table called [B]Receipt [/B]while the optional ones are saved in the other table called [B]receiptLine[/B]. When all the fields are filled in, then the … | |
hello all, am using asp.net vb . i have a label named label1 but i am passing data into it at runtime which depends on what the user clicks. My problem now is that 1. How do i do autosize for the label because its not in the label properties … | |
[code] public partial class FrmOnline : System.Web.UI.Page { string Query; SqlCommand cmd; SqlConnection conn; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { OpenSQLConnection(); SqlCommand cmd = new SqlCommand("select * from Info1 where UID=1", conn); SqlDataReader dr; dr = cmd.ExecuteReader(); while (dr.Read()) { dr.Read(); TextBox1.Text = dr[0].ToString(); } } … | |
i have to convert HTML page to XML page help me thank you. | |
I want to change cursor type & backcolor when mouse moves over a td,Suppose I want to chnage the cursor to Hand, & backcolor to Blue on mouse move, & on mouse leave i want to change the cursor to default..How to do it????????? | |
please someone help me to create a regular expression for "123456789V" this kind of pattern... 1st 9 places should be numbers and 10th place should be "V" argent thnx in advanced | |
I am having trouble with textbox multiline when it store to Access database and returning in gridview show one chunk of string. Is there anyway to place each data into each own row? Input: google yahoo msn Output: [url]www.google.com[/url] [url]www.yahoo.com[/url] [url]www.msn.com[/url] But right now it is give me [url]www.googleyahoomsn.com[/url] Here … | |
I am having trouble getting a button to work properly, it works the first time it is pressed but then it doesn't work again when pressed. [CODE] <script runat="server" language="C#" type=""> public int LogoWidth = 150; public void btn1_Click(Object s, EventArgs e) { LogoButton.AlternateText = "Hello World"; LogoWidth += 10; … | |
hi, I format my laptop and then install VS2008.but now it gives an error when run my webapplication.error is"Compiler error csc.exe file is not found" and when I run new webapplication it will give an error"Compiler error vbc.exe file not found" | |
I have placed a dropdown list in the edititemtemplate of a formview control and followed specific MSDN instructions on how to bind the list source to a separate SQL lookup data source but have the formview bound to the main data source. If I set the selecteditem value to bind … | |
I am having a problem with the code below especially bolded part. I have built a shopping cart page where if they select the item 'Real Estate Forms 2d' there will be a sales tax added for that item. If they select any other item they will not have a … | |
Hi I'm new to asp.net I'm using a login view as a login view but has converted to just a template. and I have a problem that how come when i view in browser it already log in as my laptop user account. how can i make it the way … | |
Ive just created a login system using a tutorial, but it doesnt say how to protect the admin page, just logs you in.. Here first is my HTML, Login form [CODE]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="login.aspx.vb" Inherits="login" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> … | |
Hi all, I have a problem where i want two images loaded as backgrounds for seperate divs on my master page. I have created a seperate stylesheet and used the appropriate background-image: url() style tag. All the other css styles i set such as border size, color and so on … | |
hey as the title says, i would like to fill my datagridview from a class i have, this class already gets all the info from my database.... how would i get to fill my DGV... and another question, how will i change my column header names.... i have this [CODE]dgv_Calls.Columns[0].HeaderText … | |
Hi I have an image converted to binay and saved in SQL database. Below is my line of code where application is throwing above exception that im using for showing image [CODE] Dim mem As New IO.MemoryStream(CType(io.File.ReadAllBytes(imgfilepath), Byte()))[/CODE] Does anybody knows how can i fix this? Thanks and regards, f | |
I want to develop a project in ASP.Net. Can somebody will send me the project descriptions plz its very urgent. | |
hi please anyone help me in this i want to download .net framework 3.5 sp1 but i cant find any solution please suggest me where i can download it and how to run it. Thanks. Rajiv | |
Hello every body. I'm trying to connect my asp.net website with SQL server 2005 database. I have two copies of my site. One in File system and other one in local IIS. When I try to connect website in file system it is OK. But I am unable to connect … | |
hi, I have developed website "Job requisition and Interview System". In this website I offer products for accessing resume of Job Seeker . After buying the product they can accesses resumes by activing status.After one month validity of product get over.And status become inactive.In this I did active status but … | |
dear all i have developed a web application using asp.net,c# with ms access as backend. i deployed it to a server and it ran successfully now i need to deploy the same on an individual machine,,which is not a server,,,i installed iis,.net framework then deployed it on browsing homepage is … | |
I want to ahve td border,But there is no property border,Can somebody tell me how to set td boder? | |
Hi All, I copied the project from one location to another and when I try to open the code from new location, it is pointing to the old location only. Can one one please tell me what should I do to make the solution point to the new path. Thanks … | |
hi, i am trying to develop an flash application. where they have designed the entire front end by flash. now i need to doing the functionality part like taking the data from flash and save in database(sqlserver r mysql) using ( asp.net 3.5 frame work) . now as flash is … | |
Hi, ASP.Net does not shows Save As dialogue box while converting Datgrid into Excel/Pdf. My code has no errors. It Doesn't do anything. I am using this code: Response.ClearContent(); Response.AddHeader("content-disposition", "attachment; filename=Sample.xls"); Response.ContentType = "application/vnd.ms-excel"; System.IO.StringWriter sw = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter htw = new HtmlTextWriter(sw); dg.DataSource = dmpset; dg.DataBind(); dg.RenderControl(htw); … | |
Shortly I have a techincal interview in citrix for senior software engineer position. I have 6+ years exp in C,C++,VC++,C#,ASP,.NET. I heard there would be many rounds of interview. I want to know what would be the main focus areas in theese technical rounds?...like is it programming skills/projects done/OS internals/Network … | |
hai there, Im using ASP .NET c#... I have created form to send to email. Im using try catch... it giving that message that the email sended successfully. But it didnt appear in my mail account. I dont know where is the problem in the coding. Please check the coding … | |
hey,, i created one application in asp.net in vc# wich required the results of a stored procedure to be displayed into a datagridview.heres d code..,, SqlConnection mysql = new SqlConnection(@"Integrated Security=SSPI;Data Source=MANU\SQLEXPRESS;Initial Catalog=info;"); mysql.Open(); SqlCommand searchcmd = new SqlCommand("search", mysql); searchcmd.CommandType = CommandType.StoredProcedure; searchcmd.Parameters.Add(new SqlParameter("@sname", SqlDbType.VarChar, 20)); searchcmd.Parameters["@sname"].Value = textBox1.Text.ToString(); … | |
I am using windows hosting server and plesk control panel. when i am creating a project using asp.net 2.0 selecting from VS2008 and finally deploying it on hosting server , It is working absolutely fine. but when i am creating same project using asp.net 3.5 framework it works fine on … | |
I am an intermediate web designer and am working on my first backend page. I have a working editor and just need to add the ability to insert photos into the editor. I have dynamically displayed the images in a modal popup window and just need to add a click … | |
Hi to all, I want to execute same query atleast 5 times with different options. so I execute datareader in while loop. let considetr opt1 is my variable name passing to command. when while loop in second iteration then it gives me error that "The variable name '@opt1' has already … | |
Suppose there are two buttons named button1 & button2.I wnat that when the user presses enter key,button2 click event will fire? How to do dat,Can somebody tell me? | |
hi to all I am developing website in ASP.NET 2.0 using VB. I want to use AJAX controls in my website so I download AJAX control tool kit from official AJAX site but I don't know how to use it. Plz explain... |
The End.