13,153 Topics
| |
Hi I want to make my own login box to popup when I click a button Is there a way to do that? I don't want a whole page for the loging in part. I just want something like the msgbox, but with two textboxes and two buttons for login … | |
Need to delete the selected item from the dropdown from the database with the button click.Also when user clicks the delete button i need to show the alert or confirm dialog box for confirmatiuon that user realy want to delete that item....plz help me ... | |
Hi, I have a problem here. I have a project running on localhost. Whenever I made some changes on a .aspx file, the changes can be seen immediately when I access my localhost. But when I made changes in aspx.vb file, the localhost still showing old info. * I have … | |
So, I've been trying to get a page to update items in an MS SQL database forever now, trying different methods here and there having nothing working. I finally got one method to work using a datagrid thing, and it's fine for the test table I'm using. But when it … | |
how can i create GridView Template column with a textbox programmatically from code behind ? | |
hi, i have a website where i provicde a link. On clicking the link a controller action method is called to generate a zip file after creation of zip file is done, i show the link to download the zip file by replacing the link to create a zip with … | |
hi everyone, I am using asp.net 3.5 and sql server 2005. I am accessing data using javascript functions. Now I need to store that data in database. Can anyone help me? Thanks for your help in advance............ | |
Hello all of you, i m trying to get image from database to asp:repeater for that i am using one handler page but not able to get the image here is the code for asp:repeter [code=C#] <asp:Repeater ID="rep" runat="server" > <HeaderTemplate> <table> <tr> <th> Image</th> <th> Basic Information</th> </HeaderTemplate> <ItemTemplate> … | |
Does anyone have any ideas on what is available? I don't feel like writing my own MVC forum software at the moment. | |
Hi all, I am creating a checkbox dynamically on page load. [code] using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SimplifyNew"].ToString())) { SqlCommand cmd = new SqlCommand("usp_selectModifiedResults", conn); cmd.CommandType = CommandType.StoredProcedure; conn.Open(); SqlDataReader reader1 = cmd.ExecuteReader(); while( reader1.Read()) { System.Web.UI.HtmlControls.HtmlGenericControl DivCheck = new System.Web.UI.HtmlControls.HtmlGenericControl("DIV"); DivCheck.Style.Add("float","left"); CheckBox cb = new CheckBox(); DivCheck.Controls.Add(cb); bradbandPanelTarget.Controls.Add(DivCheck); cb.ID … | |
[B]Hi, I get the below error...plz tell me how to solve it...it comes when i upload my application n check in browser[/B] Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the … | |
I am working on a Web App, coded in VB.net Here is some code and I'll explain it, Hope I use the code tags properly [CODE]<asp:LoginView ID="LoginView1" runat="server"> <LoggedInTemplate> Only Logged in users can see this <asp:LinkButton ID="LinkButton1" runat="server"/> <!-- This is a Rich Text Editor --> <FTB:FreeTextBox id="FTB1" Width="600px" … | |
So my problem is : student([COLOR="red"]STUDENT_ID[/COLOR],name,surname) address([COLOR="red"]STUDENT_ID[/COLOR],city,number,state) additional_info([COLOR="red"]STUDENT_ID[/COLOR],what,why,when) [COLOR="Red"]IF STUDENT_ID IS IDENTITY , THEN THE PROBLEM IS EASILY SOLVED BY DECLARING A NEW VARIABLE WITH THE COMMAND SET SCOPE_IDENTITY , BUT IN MY CASE , ID_STUDENT IS FROM TYPE NVARCHAR, BECAUSE THE FORMAT OF THE ID SHOULD BE xxx/yyyy WHICH … | |
Hi My web Application has some problem to connect it with localhost..it does not show any compilation error but it shows a blank web page..i checked IIS,its working perfectly...even windows apps is also working properly...cant find out the error and dnt knw how to solve it... pleaseee help me.... | |
I have a checkboxlist and I need to know how I can send the values of all checked items to a text file. I already have other controls on the form sending their values to my text file, but I don't know how to get the values of the checked … | |
Thank you for reading, I am currently trying to pass through a project or whole sites containing many pages to determine wether they are xhtml-strict or not with a local xhtml-strict.dtd file. I cannot go through a webservice it would be too overkilling for server and host might even probably … | |
Hi, I have a javascript object which is converted from json to java script object. i want to display its values like after each key value pair, i want to insert new line. but i dont know exactly how to do that. below is my code, please take a look … | |
Hi Every One: I am creating some textbox and button dynamically and adding them to one panel (plane created statically) and placing this panel to update panel (update panel created statically)now what next i do how i define trigger please help me i am novoice in Asp.net Ajax plz help … | |
how do avoid multiple login of users from different browser..? i mean first i logged in from IE next i logged in from Mozilla.. now if i'm once logged in .. i want to show user a message that u r already logged in i'm using membership framework.. any help..? | |
hi, i have designed a web service which would create 2 csv files on the system. I want to send the links to the location of the files as an url attachment over the aspx page. like : ([url]http://)[/url] myserver/download.aspx?file1=C:\temp\image1.png&file2=C:\temp\image2.png i kept http in brackets so that you can read … | |
hi i want to insert a textbox value into one column of a table. bt wht i m getting error as: Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near '{'. the code is [CODE]SqlCommand comm = new SqlCommand("insert into Sample {'email_id'} values("+ TextBox1.Text+")", conn);[/CODE] how should i do it if i dont … | |
i use this method to fill data grid [code] public void fill() public void fill() { SqlConnection con = new SqlConnection(connStr); con.Open(); SqlDataAdapter da = new SqlDataAdapter("Select * from Dept_Master", con); DataSet ds = new DataSet(); da.Fill(table); } public void BindDG() { GridView1.DataSource = table; GridView1.DataBind(); } public void Nrow() … | |
I'm developing a mobile website using vb.net but having set my tools right as I read somewhere, I've having an object reference...null error from the sqladapter line. I'm trying to authenticate by checking the db for username and password and granting or denying access asthe case maybe, here's my code, … | |
Hi, I am new to asp.net can any one of you please tell me how to do the below scenario. I am having a set of menus in my web site. In a menu I want to restrict a menuitem access ie the user with the admin access can view … | |
Hi, I'm trying to loop through multiple textboxes in a C++ form using visual studio.net 2008 to set the selection start for each. The code for a single textbox is easy: [CODE] textBox1->SelectionStart = 4; [/CODE] When I try to assign textBox1 to a Control variable, and assign selection start, … | |
[code=text] CREATE FUNCTION dbo.GetDuration(@FromDt as datetime) returns varchar(255) as BEGIN DECLARE @YRS AS SMALLINT, @MNT AS SMALLINT, @DY AS SMALLINT, @Fvalue varchar(255) SET @YRS = DATEDIFF(YY, @FromDt,GETDATE()) SET @MNT = DATEDIFF(MM, @FromDt,GETDATE()) % 12 SET @DY = DATEDIFF(DD,GETDATE(), DATEADD(MM, (@YRS 12) + @MNT,@FromDt) ) SET @Fvalue = CAST(@YRS AS VARCHAR) … | |
THIS IS A ASP.NET Web APPLICATION NOT WINDOWS FORMS Problem/ Question: To search a child node anywhere in the treeview. I need to type a Node name in the textbox and search the node name in the Treeview and highlight the node name on finding. I don’t how to do … | |
hello all of u ! i m begging in c# and making one program in asp.net ! i have very simple query , [code=c#] public partial class _Default : System.Web.UI.Page { public String str; protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { str … | |
Hi Guys I am working on asp.net and C# i had problem with enter key. I used the master page and i created the login module on the master page .i used to asp.net default Validator for validation.but when i go to the registration page and hit the enter the … |
The End.