13,153 Topics

Member Avatar for
Member Avatar for praveen_dusari

hi all, i am new to asp and i have a problem in editing the data...here is the code can someone please help... [ICODE]protected void Page_Load(object sender, EventArgs e) { if (Session["admin"] == null) { Response.Redirect("Default.aspx?msg=1"); } if (Request.QueryString["id"] != null) { SqlConnection conn = new SqlConnection(); conn.ConnectionString = helper.ConnectionString; …

Member Avatar for kvprajapati
0
174
Member Avatar for kiran.madke

hi everyone i want a solution for this. i tried to check a all data from datbase table using dataset with a foreach loop. but this logic check only first row not below that so any one help me to solve this problem so i can check all rows from …

Member Avatar for CrappyCoder
0
766
Member Avatar for DavidMorley

I want to bring data from certain cells in an Excel workbook into a datatable. The Excel is 97 - 2003 and is in \Box_zero.xls. The code snippet below gives an error "Could not find installable ISAM". From what I see in the literature, this error often means that there …

Member Avatar for DavidMorley
0
104
Member Avatar for sbglobal

hi I am using auto complete extender and it is not working in Web user Control . But Working in Web form Please give its solution ASAP. Cs Code [code] [System.Web.Services.WebMethod] public static string[] GetSuggestions(string prefixText, int count) { MyDatabaseDataContext db = new MyDatabaseDataContext(); return db.Movies .Where( m => m.Title.StartsWith(prefixText) …

Member Avatar for Ramesh S
0
398
Member Avatar for Stivi

Hi, is there some way to close the window after clicking the button on webpage? I found some examples in VB.net, but I want to make it using C#... S

Member Avatar for Md.Akbar pasha
0
98
Member Avatar for kieky

hi all..i'm new in asp.net can you show me a code to using search button, please? i'm using c# and linq sql.. this is very urgent.. :(

Member Avatar for kvprajapati
0
56
Member Avatar for Prabhakar bagde

How Can crate A Slide Show in asp.net page using java script and image is inside the sql database

Member Avatar for kvprajapati
0
67
Member Avatar for kieky

Hi all.. i have button save. when i click the button, i should Response.Redirect("~/Admin/DaftarUser.aspx") but i must double click to do that? whats wrong?

Member Avatar for kuracha
0
61
Member Avatar for anki1986

From Where i can get the free menu bar styles for using in my site plz help me ...........

Member Avatar for kvprajapati
0
40
Member Avatar for bnath001

I have a Gridview control on an .aspx page. what is the first gridview control event, that gets triggered/fired. The gridview control has boundcolumns. I have configured the selectcommand in the .aspx page to pull the data from database as shown below: [CODE]<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionStringff %>" ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName …

Member Avatar for bnath001
0
74
Member Avatar for trivedimca

HI, I have developed a website and hosted in godaddy and it works fine. Now my client wants it in cloud computing in ([url]www.salesforce.com[/url]). How can I deploy my existing web-site to salesforce cloud computing. I have searched it fro last 2 days but not getting any idea and there …

0
81
Member Avatar for gouriarun

Hi, I am creating a resume page in which i am not creating a field for the primary key. So for editing that page i have to get the details to the textboxes based on the resume id ie the primary key. The primary key is auto increment. How can …

0
38
Member Avatar for judithSampathwa

hi , i have a field in a table with the datatype as datetime. i wrote a query to get that feild but the thing is i want only the date to be displayed, how can i do that, currently the date and the time is being is displayed, how …

Member Avatar for buddylee17
0
179
Member Avatar for wr3ckin_cr3w

I'm looking to create identical sets of controls right under each other after the user clicks a button. What I have here is replacing the same set of controls over and over again. Any help would be appreciated it! [CODE] Imports System.Data.SqlClient Imports System.Data Imports System.Net.Mail Imports System.Web.UI.Page Imports System.Web.UI.WebControls …

0
68
Member Avatar for raja289

Helllo there I am new to programming i am trying to update my checkbox column in a gridview (asp.net)which i cont I can able to get the data 1 or 0 in database and able to update the checkbox as checked or unchecked my code is [code] <asp:TemplateField HeaderText="Available" SortExpression="Available"> …

Member Avatar for kvprajapati
0
120
Member Avatar for ebay1989

I am having the same problem, I'm using aspnet.mdf (auto-generated by asp.net) any help would be great! thanks in advance!

Member Avatar for mysticklarose
0
68
Member Avatar for searchec

Hello Friends, I am new with asp.net.How to use mysql backend in asp.net please answer with code example.

Member Avatar for kvprajapati
0
131
Member Avatar for Patel44
Member Avatar for ebay1989

Hi, I've built a website which acts as an online book store. Customers can log in and view books which are displayed in GridView1 which is linked to an sql database. I now need to build a shopping cart feature which will allow them to add books from the GridView1 …

Member Avatar for kvprajapati
0
147
Member Avatar for ibdatx

Hi, I have a question regarding navigating to a listbox item in C#. I have written code which populates a listbox from an xml file in xaml (thus bound to it). However I want to navigate to the selected item in the listbox using code in c#. I can navigate …

Member Avatar for ibdatx
0
278
Member Avatar for Wehttam

Good afternoon, I have a problem... Else I wouldn't be posting here, right? My quandary is thus: I have an empty table in a database that I want a user to be able to fill. This will occur when employees are replaced for sick leaves, etc. I'd like to be …

Member Avatar for Wehttam
0
180
Member Avatar for kieky

hi all.. i really need your help to solve my problem.. this is the scenario : first, user choose link "detail" at document table.in that detail,i have a hyperlink "comment". in aspx i wrote this code : [code] <a href="ShowComment.aspx?id_document=<%#Eval("id_document") %> ">Comment</a> [/code] id_document is value of query string from …

Member Avatar for dhanapal86mca
0
70
Member Avatar for kingofnothing

hi i had build Arabic web site in asp.net and i set the culture to ar-iq and uiculture to ar-iq and set globalization in web.config to windows-1256 then i added tags <META CONTENT=TEXT/HTML; CHARSET=WINDOWS-1256_ HTTP-EQUIV=CONTENT-TYPE> it work fine in local computer but when i published to remote host its appear …

Member Avatar for dhanapal86mca
0
67
Member Avatar for bharanidharanit
Member Avatar for Borzoi
0
209
Member Avatar for new SE

hi.. anyone can help me to convert asp.net program to pdf? before this i'm using this code [CODE]private void ExportGridView() { string attachment = "attachment; filename=Contacts.xls"; Response.ClearContent(); Response.AddHeader("content-disposition", attachment); Response.ContentType = "application/ms-excel"; StringWriter sw = new StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); GridView1.RenderControl(htw); Response.Write(sw.ToString()); Response.End(); }[/CODE] to convert to excel.. …

Member Avatar for 1seo
0
191
Member Avatar for satiss7pwr

i have one window application developed in VS 2005 which is running successfully on client side,My question is that now i want to convert this window application in WPF browser based application, so what should i keep in mind to convert this application to wpf applicaton, One more thing that …

Member Avatar for satiss7pwr
0
940
Member Avatar for suis

Hi every body, I have a big problem, well my problem is i have a collection of .PST file in my hard drive now i have to write a programme using vb.Net to READ .PST files ! basically i need to be able to read the content of the .PST …

Member Avatar for David699
0
389
Member Avatar for bravo659

Hi guys. I have an ASP.Net assignment to do and need some assistance if possible. I previously read a post from a person with the same assignment but this is for ASP.Net LINQ to SQL not windows form. The following is my code forthe batting average. Code-Behind [code] private void …

Member Avatar for croker10
0
224
Member Avatar for erum

see the link [URL="http://www.gfln.org/Regsiteration.aspx"]http://www.gfln.org/Regsiteration.aspx[/URL] and click on radio button from 1 to 7 IE produces div (as many as clicked) but in forefox it got some how hang .please post back me if i need explain any thing else in my problem any urgent reply is highly appreciated

Member Avatar for erum
0
204
Member Avatar for alokshri67

Hello, I want to give alert on click of button my codes is [CODE] Protected Sub BTN_SAVE_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles BTN_SAVE.Click Response.Write("<script>alert('hello')</script>") End Sub [/CODE] But after clicking it is giving alert message. why? Alok Shrivastava

Member Avatar for alokshri67
0
74

The End.