13,153 Topics
| |
please can someone help, i wana add row to a xml file .mwa | |
Hi, I need regex to ignore strings having < followed by a letter. But everything else is allowed abce <a <a asdfj<aasdfasdfsd Thanks in advance | |
I try to deploy a .NET1.1 website in Windows Server 2008 As i know, the server need .Net Framework 1.1 install before the deploy begin . So i follow the instruction in this link [url]http://learn.iis.net/page.aspx/472/how-to-install-aspnet-11-with-iis7-on-vista-and-windows-2008/[/url] While after the completion. Then i paste the project in inetpub and Create Application in … | |
Hi I am unable to update the gridview because it is interfering with the footer textboxes. Can I know how to disable the footer when i click on edit button, so that it can update <asp:GridView ID="GV_Money" DataKeyNames="ID" ShowFooter="true" runat="server" DataSourceID="SqlDataSource1" AlternatingRowStyle-BackColor="AliceBlue" AutoGenerateColumns="False"> <RowStyle CssClass="test" /> <Columns> <asp:CommandField EditText=" Edit " ShowEditButton="true" … | |
This is my first time for establishing an ASP.Net website on a HTTPS server. As usual, I have developed a website and it works fine on HTTP server (including localhost), but after I upload the website to the HTTPS server, the ASP server button disappeared and when I view source … | |
hi all.. I am going to do mjy final project of degree about an online domestic services.. like carpenter electritians and painters masons etc would be avalaible online registered through some franchise.. So i need some title a catchy one for this online application.. So kindly give me ur kind … | |
after putting some errorts.. i managed to kick start with my project... a basic project on inventory management.... wer add,del,edit,view.. of inventory stuffs can be done... but now.. i hav sucessfully.. 1.created a table in SQL 2000 ( all the tables tat wer req for my inventory) 2. created rough … | |
Hi, I have the following code: [CODE]<asp:GridView ID="MyGridView" runat="server" AllowPaging="true" PageSize="30" AutoGenerateColumns="False" AllowSorting="true"> <Columns> <asp:TemplateField HeaderText="Industry ID" ItemStyle-Width="150px" ItemStyle-HorizontalAlign="Center" SortExpression="ID"> <ItemTemplate> <asp:Label ID="IDLabel" runat="server" Text='<%#Eval("ID") %>' /> </ItemTemplate> <EditItemTemplate> <asp:Label ID=" IDLabel " runat="server" Text='<%#Eval("ID") %>' /> </EditItemTemplate> <FooterTemplate> <asp:Label ID="EnterLabel" runat="server" Text="Please, enter the new name: " /> </FooterTemplate> … | |
Can anyone tell me, which Community Frameworks in ASP.Net exist? I know of Sueetie. [url]http://sueetie.com/[/url] I want to program a Community-Site, with my own needs. thanking you in anticipation | |
hello.. i wanna develop website in asp.net which will get information from the code run in matlab.. could you explain how to integrate both.. | |
HI I have written a Report in SSRS 2008, and have deployed using Reportviewer and ASP.net. When you run the report in the ASP.net, one little problem is that, the data is a grouping of product types, and you can click on the + sign, and then it provides details … | |
hi..actually i am developing a web application wherein i need to print barcodes at client side. i have the PCL file that would print the barcode but the problem lies in printing at the client side and that too without opening the print dialog box. can somebody help me with … | |
I am trying to automate MS Word in my web application. I have added reference of Object Library 11.0 version. Still i am unable to run it properly. Moreover the problem is raising only after i publish it to IIS, otherwise it is running properly. The exception i am getting … | |
i have a problem when there is no data entered in the database and the data is entered for the first time. then it is giving an error even though the data is get saved. here is the code : [CODE] Protected Sub submit1_Click(ByVal sender As Object, ByVal e As … | |
[code] public CheckBox[] cb = null; int z=0; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { cb = new CheckBox[count - k]; //Database code......... while (dr.Read())//read data from access database { cb[z] = new CheckBox(); cb[z].Text = dr["Member_Name"].ToString(); Panel2.Controls.Add(cb[z]); Panel2.Controls.Add(new LiteralControl("</br>")); z = z + 1; } } … | |
Hi. I would like to create those checked rows in gridview with a button click. For example, an user checks 2 rows in the gridview, and clicks on the create button. I would want the selected row/s to be created to the database. How would I go about doing this? … | |
I am trying to write a program that interfaces with a BlackBerry device plugged in via USB (utilizing the Desktop Manager API). The only exampes I can find for doing this are in C++, but I only know how to write/interpret VB .NET (I'm a novice, really), so I decided … | |
[code] public CheckBox[] cb = null; int z=0; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { int count = (int)countcmd.ExecuteScalar(); Int32 k = Convert.ToInt32(Session["TZ"]); cb = new CheckBox[count - k]; OleDbCommand cmd = new OleDbCommand("Select Member_Name from Member_Master", con); dr = cmd.ExecuteReader(); while (dr.Read()) { //creating check box … | |
I have these two text boxes on the same row, "txtbroker" and "txtacct1". I'm trying to make it so that if text is entered into the 1st text box, the 2nd one is REQUIRED. [code] <td><tnc:TextBox id="txtbroker" savestatecontroltotarget="SSMainBusinessSave" columns="50" runat="server" /></td> <td><tnc:TextBox id="txtacct1" savestatecontroltotarget="SSMainBusinessSave" columns="25" runat="server" /></td> [/code] Can anyone … | |
Dear Sir My question is in wed application how can we mention connection string without writing the drive in which database is present.I don't know how i I use web config file to write connection string.Please help.[code]Partial Class supports Inherits System.Web.UI.Page Dim con As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\progr2\App_Data\Database\health.mdb;Persist Security Info=False") Public … | |
hi there, I have to display some user specific info;so i need to save my login page credentials to show only that user's info.So plz help me as how to store login page info in session variable and how to access that info in some other page in ASP.NET. thnx | |
so basically, im still new to this asp.net and i need to take 4 drop down boxes for " best sellers " in the admin panel and update those boxes from the " products " page, how can i go about doing this? if there already a topic for this, … | |
Hi guys, This is my first post here. Actually wanted to insert record into an sql database (using sql server 2000 and visual studio 2000) I'm using a dataview to see if the user already exists. This, i've been able to retrieve and it works. Now if the user does … | |
How can I add something at page level without inserting into the database. Thanks Manju | |
Hello All, I want to retrieve encrypted value from database decrypt that value and again encrypt that value and save into database. above steps should be happen on single button click. Its very Urgent. Thanks. | |
Hi. Background : the application i am busy with is a webpage being done in C#, ASP.NET, and SQL server 2005. I have set up a SqlDataSource so that it returns one result. This would be meetingID. The query is set up in a way that the SqlDataSource just returns … | |
hi, i have a stored procedure named as'usp_rp_era_rejected_claims_detail'. [CODE=sql]ALTER PROCEDURE [dbo].[usp_rp_era_rejected_claims_detail] ( @S_Nos varchar (max)=null, @Practice_Code varchar(500)=null, @Date_From varchar(10)=null, @Date_To varchar(10)=null, @Date_Type char(1)=null, --'E' for Entry Date , 'C' Check Date @Report_Type char(1)=null --'U' unresolved, 'R' resolved ) AS BEGIN DECLARE @SQL Nvarchar(4000);[/CODE] I have an form in asp.net.The form … | |
hi.. im trying to put my data on a server & work on the same from other machine..im using win2003 as OS of my server & on the other machine's XP is the OS. my problem is, when i try to run my C# applications from the other machines, it … | |
Dear All, I am using Listview contro in asp.net and is populated from access database and has four fields, Title Firstname Lastname Email I just want to get email from listview into a textbox, any simple way to do that? I am using c# s a programming language. Thanks in … | |
sir/madam i want to know how internet traffic problem will be solved i.e(at some time if 10 requests came to the website out of them which request will be served first) on what priority requests are served how will they be served. how coding will be done could u pls … |
The End.