13,153 Topics
| |
hi all, iam familier to php forum here but completely new to vb.net, i am developing a web application using oracle database,vb.net and asp.net,just stuck up with generating manage content table with edit and delete you can see it in image file attached which is done in php here is … | |
hi iam trying to insert data into databse through gridview ....... there is no errors showing.............. here the problem is that the grid view cannot be displayed at runtime.. here my coding is given below.......... pls help me......... [CODE] <asp:GridView ID="GridView1" runat="server" style="z-index: 100; left: 44px; position: absolute; top: 41px" … | |
Hi friends! I have a listview that shows the user the details of the members who have sent friendship request. The table from which the data come has two fields namely, sender_id[id of the one who sends friendship request] and receiver_id[id of the one to whom the request is sent]. … | |
Is there any way so that I can get the pubic Ip of the request which comes from the LAN using ASP.NET and c#...i need it very urgent | |
hi all.. I am going to do mjy final project of degree about [B][U]Social Networking Website[/U][/B].......... So i need some title a catchy one for this online application.. So kindly give me ur kind suggestions and ideas for this project title.. Regardz :) | |
| |
I want to perform URL ENCRYPTION for my website......Can anyone help me. | |
Hi, I am trying to develop a website that displays a google map and some markers that I want to add from my SQL Server Database. I have tried to get the values(Latitude and Longitude) from the database in the asp.net and pass them to javascript to add a marker … | |
please help me how to insert data into database by using grid view here iam using asp.net with vb.net database sqlserver-2005 give me any code or suggestions....... pls help me urgent........................... | |
any one can help me? i am having problem in using htmlpaser in asp.net | |
I am doing the school project for ASP.net in Visual Basic and trying to do the updating through gridview but somehow doesn't work at all. Mind to help.....? [CODE]Dim ProductName, SupplierID As String Dim qty, price As Integer REM Dim key As Integer = GridView1.DataKeys.Item(e.RowIndex).Value Dim tb As TextBox tb … | |
[code] SqlConnection con = new SqlConnection(scon); con.Open(); SqlDataAdapter da = new SqlDataAdapter("select Question,Option1,Option2,Option3,Option4 from QuestionData", con); DataSet ds = new DataSet(); da.Fill(ds); foreach (DataColumn dc in ds.Tables[0].Columns) { foreach (DataRow dr in ds.Tables[0].Rows) { Questionlable.Text = dr[0].ToString(); OptionList.Items[0].Text = dr[1].ToString(); OptionList.Items[1].Text = dr[2].ToString(); OptionList.Items[2].Text = dr[3].ToString(); OptionList.Items[3].Text = dr[4].ToString(); } … | |
hi iam getting error like "Conversion from string "0/" to type 'Double' is not valid." in the underline part of the coding .......... here iam using sqlserver-2005 here my coding is [CODE] Protected Sub save_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles save.Click Dim conn As New SqlConnection(ConfigurationManager.ConnectionStrings("guest1").ConnectionString()) Dim … | |
Hi, I have website that works perfect, but sometimes I receive complaints from users(last time this was done often), that when they try to login the get "Internet Explorer cannot display the webpage". Why is it happen?And how can I prevent it? thanks, raya | |
Hi, i use simple login with a login page where user place u/n and p/w. The data are compared to store data from access db. If matches, open a secure page. So far so goob. In secure page i wanr to show a gridview with user's data, so he can … | |
First off I would like to say that I am new to asp.net and programming in general. I have created a website that is being hosted at Network Solutions on a Windows server. My html and aspx pages load fine. On my aspx pages I am using the asp login … | |
Hi, Is there any development tool i can install on my mac for ASP.net? Regards, Anuj | |
I have an Object, called boot. This boot contains two other objects - a headset and a shellset. Each headset and shellset contains 1 head and 1 shell respectively. My code is not working as expected....I really need some help on this one! Here is the code for my Head/HeadSet … | |
[code] protected void Button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["shortycaponeConnectionString"].ConnectionString); for (int i = 0; i < GridView1.Rows.Count; i++) { GridViewRow row = GridView1.Rows[i]; CheckBox chkbox = (CheckBox)row.FindControl("cbRows"); TextBox Quantity = (TextBox)row.FindControl("tbx_TextBox"); if (chkbox.Checked == true) { try { con.Open(); SqlCommand cmd = new SqlCommand("INSERT INTO InwardEntries(ProductCode,Size,Quantity,DateTimeNow) … | |
how to convert from 'string' to 'System.Data.DataTable' I Have this code and my computer appear kode error I have put all the web site on the attach The best overloaded method match for 'System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataTable, object)' has some invalid arguments cannot convert from 'string' to 'System.Data.DataTable' [code] using System; using System.Data; … | |
hi .... i need help to unserstand this code please if someone can help by explain or write commant [CODE] Public Shared Function GetPostBackControl(ByVal thePage As Page) As Control Dim myControl As Control = Nothing ' Dim ctrlName As String = thePage.Request.Params.Get("__EVENTTARGET") If ((ctrlName IsNot Nothing) And (ctrlName <> String.Empty)) … | |
hi i want to show the grid view in another web page when button is clicked,,,,, here iam using sqlserver-2005, here my code is given below [CODE] Protected Sub chkavail_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkavail.Click Dim a As String Dim b As Boolean Dim dr As … | |
hi, i had got a problem when iam using to show the crystal reports using an condition it was not working properly ,,,,,, here my code is given below ,,,,,, iam using sqlserver..... [CODE] Protected Sub search_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles search.Click Dim cryRpt As New … | |
hi.. Im building an application in ASP.net where i have a button which should add more textboxes when clicked. the other textboxes are placed in a table so if i click the button it should a new row containin the textboxes.. please let me know wht code i can use … | |
I'm a real newbie to ASP, I'm afraid. I have a windows app that I have written in Visual Basic 2008 using Visual Studio. Could I use ASP.NET to move the app's functionality to be available over the internet? Broadly speaking, the app collects lots of data from the user, … | |
Hi All, Please help me with this. I have a problem and that is I need to connect .net application with already created application but I am not able to do it. Application already created is namely GCSS. How I will connect to this gcss with my .net application, please … | |
Hi, I'm working on a project whereby I have a dropdown control and a formview control. The formview is linked to a datasource and the dropdown is supposed to utilize a stored procedure to update the row that the formview is displaying. Now the problem here is 1- is it … | |
I made a very simple website using ASP.NET and SQL Server. I will post all the code up if it will help. On my local machine, the website works perfectly. I can preview it from Visual Studio fine, and I set up the IIS on my localhost, and it works … | |
Can anybody help me here... my application being developed in ASP.NET uses a master page. The master page is set out with a header table, site navigation table, and the content place holders.... when i load certain pages the site navigation table (on the left) will automatically resize to try … | |
[B]I m new to asp.net I made a web page .I design in my laptop, but when i run that web page in desktop the images which i use goes here and there .i used table and master page , but the same thing happen, could u plz tell me … |
The End.