- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
36 Posted Topics
Hello Developers, I have a project in VS2008, i am having requirement to load control dynamically. So for that i am trying to develop one demo for it but i am not succeed yet. So i am here... I have developed one page namely (Default.aspx) and three user-control (UserControl1.ascx, UserControl2.ascx, … | |
Hello App/Machine Coder.... How are you all?? I am trying to developing Macro Excel VBA Application. but when i am trying to run/compilie it shows me an error called "compile error can't find project or library" and when i'm click ok it redirect me to Refernce page and shosw me … | |
Hello All Developeres, Please Read Below Senario. I have one table Supposed "Emp(EmpID,EmpName)" Now There is data with Name "testName1" and "testName2" in EmpName Field Now I need query which fetch all record in asceding order for EmpName Field and Record with "testName1" and "testName2" will must display at [B]last[/B]. … | |
Hello All Coder, Funcion: There is a Calender_Control _Day render method.and in that i have displayed event. I want to create Dynamic linkbutton over here Dispalying EventText.and by clicking on Eventcell,want to fired Linkbutton click event... vb.net code is as below in DayRender Method: [CODE] Dim ctr_lnkbtnEvent As New LinkButton … | |
Hello Developers, [B]How to Retrive values from ObjectDataSoruce at .cs file?[/B] I want to know is there any record in objectdatasource ? will you please proved code to know this thing? Thanks in Advanced.... | |
Hello Developers, I am developing an web application and i need to create report using reportveiewer. I am successully able to fetch and display record in reportviewer now, But if no record found then it will disply only header with all Fields. Insted of this fields ,I want to Display … | |
Dear All, Have good day, I am trying to attatch file like yahoomail attatchement ,it means displaying name of file and Remove link after Button_click event fire. [CODE] protected void Page_Load(object sender, EventArgs e) { LinkButton1.Visible = false; label2.Visible = false; } [/CODE] [CODE] if (FileUpload1.HasFile) try { FileUpload1.SaveAs("e:\\parimal\\" + … | |
Hi All Developer, I am waiting for Query that will Converting full date into AM/PM with Time. only. in Sql Server. For Example: 2010-06-24 16:00:00.000 will be giving result -->04:00 PM 2010-09-24 01:00:00.000 will be giving result -->01:00 AM Wait For your Reply. Thanks. Dhimmar | |
hi All, how to save image in folder using javascript in asp.net.? I want to save image in folder using onchange method. So can any body have code for that? Thanks. | |
Hello Developers, I am not able to get client path on file(image) upload .so i can disply that file(image) in image control on upload file. On my local machine below code worked nicely. [CODE] <img id="imgProductHallmark" name="imgProductHallmark" src="" alt="Image" width="95" height="113" runat="server"/><br /> <input name="ProductHallmarkUploadID" id="ProductHallmarkUploadID" type="file" onchange="LoadImage1()" runat="server" /> … | |
Dear ALL, Please Help. I am not able to replace New line at special character. Code Than i Have done. [CODE] string x=strtext.ToString().Replace(Convert.ToString((char)13),"\\n"); [/CODE] able code will give result as --> \n0 Why 0 at after \n . Please help it's ergent.. Thanks. | |
Hi All, So much Helping Deniweb in during interuption in my code. Again for small query I hope it will give enjoyful result to Me. I want reguler expression which having "Only Numeric-Positive-Non Zero-and Must Non Empty" value. I have all ready Done expression "^[1-9]+[0-9]*$" giving result for Positive-Non Zero … | |
Hello Allideliner!!! I am having problem in retrives values from textbox at aspx page to popup page? aspx page code: one textbox-- [CODE] <asp:TextBox ID="txtTopicTitle" runat="server" style="height:25px"></asp:TextBox> [/CODE] I want to use this txtTopicTitle values on the popup page(Default.aspx page ).. Then what is the process require?? I hope somebody … | |
Hello All, I have problem in popup page using ajax in asp.net. I have one P1.aspx page.Onclick event of Hyperlik on P1.aspx How to Popup page P2.aspx(Which is Interface for inserting value in database) using Ajax. also how to passed parameter using querysting in hyperlink. Thanks All In advanced. Wait … | |
Hello All, what is code for exceute one aspx page onclick hyperlink without dispaly that page? Basically, I have one page p2.aspx.,which getting querystring parameter from page p1.aspx. When I cliced on hyper link of p1.aspx page .it redirect to the p2.aspx. but i want only that the code on … | |
Hello Developer, I am having problem to passing parameter from one user control to another user control. I am developing an application that have reusable functionality , so I converted each aspx page into .ascx page(i.e. User control) of my application which is perfactly run in aspx page. But here … | |
Hello All sir, Can any body able to give me Regular expression for validatrion string that must have [B] atleast one alphabet,atleast one numeric value[/B]? please help me?? | |
I’ve been trying to wrap my brain around this now for days, and I’m getting nowhere, so please bear with me… To Remove file on click of linkbutton I have below code: [B]aspx page:[/B] [CODE] <asp:LinkButton ID="RemovefileId" runat="server" CommandName="RemoveFile" OnCommand="RemoveFilefunction" CommandArgument=<%#Eval("filepath")%>>LinkButton</asp:LinkButton> [/CODE] [B]aspx.cs page[/B] [CODE] protected void RemoveFilefunction(object sender, CommandEventArgs … | |
Hello Sir, On Button_click event I have simple code below to compare strings in asp.net [CODE] string temp1=Button1.Text;// gives string "check" string temp2="check"; if(string.Compare(temp1,temp2)== 0) //but it return -1 { btnPreview.Text = "complete check"; } [/CODE] what is wrong with this? Can anybody help me ..? | |
Dear Sir, I have textarea to write description and above it there is an image(.gif) that I attached .So Is there any inbuilt functionallity SO i have not to do any coding for each element seen in image.? | |
hello Sir, I can not able to store file content into byte variable. I have do below code. aspx.cs page: [CODE] [B]code on button click[/B] DirectoryInfo dInfo; FileInfo[] FilesList; byte[] bytecontent; dInfo = new DirectoryInfo(Server.MapPath("upload")); FilesList = dInfo.GetFiles(); if (FilesList.Length>0) { files = new string[FilesList.Length]; foreach (FileInfo fi in FilesList) … | |
Hello sir, I have problem in getting values of textbox which in .ascx file (user control). at aspx file(the file at which control is added). code is as below. code in .ascx file [CODE]<%@ Control Language="C#" AutoEventWireup="true" CodeFile="attachfile.ascx.cs" Inherits="attachfile" %> <asp:TextBox ID="TextBox1" runat="server" meta:resourcekey="TextBox1Resource1"></asp:TextBox> <br /> [/CODE] code in .ascx.cs … | |
hello sir..... suppose i want to display list of item name at specific portion on webpage(.aspx page) but coding portion is done in aspx.cs file with use of for loop i get Item name into variable from database. now i want to use that varibale to dispaly Item name at … | |
Hello all.. thanks for my last forum..for better solution with fast reply.. I have getting problem with display link button on page aspx.cs .. I have requirement as below..... i am trying to display file name with remove link after attached file.I have done code on aspx.cs as below and … | |
Hey Brother, I have need to create new table into new database from exist table of old database. So how I can copy that much table into other database. I have tried below code. but it give error at "IN". [CODE] SELECT * INTO dbo.pqrnew IN "NewDatabase" FROM dbo.pqr [/CODE] … | |
Hello Developer, I have problem to make transperant progressbar at central of the page. I am trying to run the .gif file that can seen at middle of the page with small square and in square small circle is rouding. and after some time it will removed. It must be … | |
The technique that allow code to make function calls to .NET applications on other processes and on other machines is............? plz,fill the correct blank. | |
Hello Developers, I am final year student of mca. I want to give a C2C Certification exam. Can U list some web link that can helpful for this Certifictaion exam. plz, urgent reply . | |
Have nice Evening! I have an error message of "[B]Overflow Exception was Unhanded by User code[/B]"when i am trying to exceute below very simple code. [CODE] Partial Class zeesant Inherits System.Web.UI.Page Dim x As Integer Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load x = (Val(TextBox1.Text) … | |
Re: first of all tell me what is the starting value of sno. U have not assign the value of sno. what is it stand for? | |
Which is the better in asp.net and JSP?why? plz list me all reason. | |
Hey, Can anybody give me the code to find Serach on text written by user in textbox? | |
hello All, Here I am having problem to create run time progres bar in asp.net.Can anybody able to reply to me to create run time progressbar like gmail website.. I have developed progress bar static.,not on Time required to page load.so plz, reply me How i can developed and find … | |
Hai,I am trying to connection using web.confing in connectionstring element and i have written below code in connectionstring element in [CODE] <connectionStrings> <add name="DB1" connectionString="Data Source=DEV5\\SQLEXPRESS;Initial Catalog=icondatabase;Integrated Security=True" /> </connectionStrings>[/CODE] And in the .aspx.cs file (in Load_page)i have written below code [CODE] string connection= ConfigurationManager.ConnectionStrings["DB1"].ToString(); SqlConnection cn = new SqlConnection("connection");[/CODE] … | |
Re: [QUOTE=kanuri1;1108961]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...........................[/QUOTE] R U want to add data from gridview? or want to retrive data from database into gridview? | |
any one can help me? i am having problem in using htmlpaser in asp.net |
The End.