13,153 Topics
![]() | |
Hi I'm a new in this programming thing and I have to create a car plantation management system yet I'm lost on how to out it together and if I should be using classes in my app | |
Hi, Can we call Mysql Storedprocedure in SqlDatasource. My Connection String is Works fine. If not Is any other alternate available? Thanks in Advance | |
Hi Guys, i have three textboxes the first 2 should only allow users to enter numeric values (0-9) and decimal eg (5.2 , 5.5) the third textbox should allow the first three characters entered to be YUP followed by numeric values only. eg YUP453 or YUP439. Can anyone provide me … | |
Hi All, My webApp has a fileupload control which can be upload upto 100mb. This works fine in debug mode. But after hosting it in the server, it shows "Connection Reset" error. I use ASP.Net + VB + IIS 5.1 help me to solve this. Thanks SARAVANAN | |
Good day everyone, so here, i have a problem with my repeater control's sql query, what i would really want to happen, is i have a randomized number from 1 to 60, that will tell the database which test question to select, (if it's only one, it's not a problem, … | |
Please help me, I need help on uploading pix, the error is " 'AccountPicture' is not a member of UrlHelper". UrlHelper is an Extension module in my project. Please how do I fix that? | |
Hi, can anyone help me with paging on a gridview please? <asp:GridView ID="GridView1" CssClass="gridStyle" runat="server" AutoGenerateColumns="false" CaptionAlign="Bottom" GridLines="Horizontal" onselectedindexchanged="GridView1_SelectedIndexChanged" OnRowEditing="GridView1_RowEditing" ShowFooter="False" AlternatingRowStyle-BackColor="White" onrowcreated="GridView1_RowCreated" RowStyle-HorizontalAlign="Center" AllowPaging="True" onpageindexchanging="GridView1_PageIndexChanging" PageSize="5"> <RowStyle BackColor="#DEDFDE" ForeColor="Black" /> <Columns> <asp:CommandField ShowEditButton="True" ButtonType="Button" ItemStyle-Width="40px" ControlStyle-CssClass="button" ControlStyle-Width="43px" ItemStyle-HorizontalAlign="Center" /> <asp:CommandField ShowSelectButton="True" ButtonType="Button" ItemStyle-Width="40px" ControlStyle-CssClass="button" ControlStyle-Width="43px" ItemStyle-HorizontalAlign="Center" /> <asp:BoundField DataField="ID" … | |
Hi all, When i run my application on mysystem/localhost it gives me correct username. but when i host my application on IIS and then open application on other user's pc then it should show that pc's username. but it doesn't. how to retrieve username of that pc? thanks | |
Sqlconnection conn; Sqlcommand cmd; conn = new SqlConnection("Server=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\Database.MDF;Trusted_Connection=True;User Instance=yes"); conn.Open(); string cmdString = "Insert into Customer Detail (Customer_id,Name,Address,Contact_Person,Contact_Person_no)Values ('" + TextBox6.Text + "','" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox5.Text + "','" + TextBox4.Text + "')"; cmd = new SqlCommand(cmdString, conn); cmd.ExecuteNonQuery(); Label2.Visible = true; Label2.Text = … | |
I have a form that has a dropdown list with all the ID's of a particualr table in my database what i want to do is whenever the user selects a particular ID the remaining fields along with the id selected are loaded in a listview. and this dynamic list … | |
hi guys i have a table in a database with data of which i want to display in a tabular format. In addition i want also to be able to edit a particular column of the displayed tabular data but the editing will only allow for the rentering of numbers, … | |
![]() | I got this code to show my blogger feed: <legend><h3>Blog Feed</h3></legend> @if (ds.Tables.Count > 0) { foreach (DataRow row in ds.Tables[6].Rows) { <p><a href="@row[5]" target="_blank"><br /><b>@row[5]</b></a></p> <p>@ds.Tables[9].Columns[1]</p> } } The problem is that the link displays correctly like http://blog.thecodingguys.net/2012/08/iis-404-file-or-directory-not-found-403.html but the link text also displays the url it should display … |
Is it possible to create a custom Pager for the GridView control of ASP.NET that looks liek this? http://i47.tinypic.com/2925ssj.png If so, can anyone give me some ideas or some starting code into how to create it? Thank you. | |
sir i want do on small application like face book,can you people help me please,how can i proceed.......please give me instructions... | |
i have a process to use zebra printing machine.. i dont have any idea from where and how can i do this process.. can any one help .... i want to print my sql table id with barcode in zebra printing machine.... i am very much confused how should i … | |
Hello all, basically I would want to select a specific field and update it. However when I click Update, I would want to see the data that I selected not just a blank field. I am using a View( I joined 2 tables), so is it possible to update the … | |
Hi guys, I having problem with the gridview. In the gridview there will be a columnn that contains Textbox and dropdownlist. I need to enable to disable control based on the datatype in the database for example Text, it will display the textbox control or date datatype it will display … | |
Hello all, I am currently working on our website, [url]www.northpointbaptist.com[/url], and we have recently updated it with a major overhaul of the site. My question is that I would like to know how to implement a live video stream into it on a seperate page (where the user just clicks … | |
Hi There; I have a ASPX file and a code-behind cs file. I try to connect to a postgresql, perfom some database issue, and disconnect from it finally. To name a few, I print all records of database to the html file, add some new records. All these operations are … | |
Hi Friends, I am working on a project. where A Button click("Show Activity Button") should open a Rad window . In that Rad Window there are four checkBoxes which come from DataBase if we check "Development"( Attached File img1.png) It should go back to the parent page and display what … | |
now im doing project in asp.net by using visual studio 2008. im having some doubt in connectivity by usiny sql.So can anyone suggest some links to help me | |
Can someone pls help me ? I have an ASP.NET page with Gridview(with EDIT and Delete functionlity) and dropdownlist inside it, the Dropdownlist is well populated with the correct values but whenever I click EDIT button in the gridview the selected value in DropDownlist is set to the wrong value(to … | |
Session.Clear(); Response.Buffer = true; Response.ExpiresAbsolute = DateTime.Now.AddDays(-1D); Response.Expires = -1500; Response.CacheControl = "no-cache"; //----- Second Technique : To Stop Caching of Secure Pages. Response.Cache.SetCacheability(HttpCacheability.NoCache); FormsAuthentication.SignOut(); if (Session["UserName"] == null) { Response.Redirect("login.aspx"); } Session.Clear(); | |
Hi, I have EntityDataSource1 and i am allowing user to edit Primary Key column. the column is 5 characters code (string) that user has to enter. I am using telerik Grid and inline editing. Obviously if duplicate is entered it will thow this error, but i am confused, where in … | |
hi, i want to change my ip address in every 10 minutes so please give me code to change my ip address in c# windows form application. | |
How to implement (Browse from path "c:\Proxy List.txt") Proxy List in C# WebBrowser control/Component. What I want to know, is how to implement proxy-list from "c:\proxylist.txt", so my C# webBrowser control use this proxy for browsing when its run. I also don't want to change proxy through registry ... because … | |
Hello dear members i am running an online shopping project past few days my website not working very good it is too slow for loading,i hosted it on a dedicated windows server, and also have a very good internet speed but still have problem loading the web site and also … | |
Hi all, I need to find a solution on this case: I'm running an application on a server this application needs to search a certain string in all the filenames, filecontents and folders. Local it works but when I want to search on another server (which is shared he doesn't … | |
Hi Experts, I am searching for a way to edit web.config connection strings using .msi file. Since it needs to be installed by other people. I dont want others to explicitly go into file and edit the server address and db username and password. I want to have a nice … | |
Hi, I have page1.aspx with a calender control with multiple selection of dates with confirmation button below calender which displays selected dates in grid view below. Everthing worrking fine upto now. Now i want to send the gridview data to nextpage.aspx using session. Please see below code for gridview to … |
The End.