Forum: MS Access and FileMaker Pro Aug 25th, 2009 |
| Replies: 3 Views: 472 Hi,
Thanks for the reply but may be i wasn't clear in my requirement.I have a table containing two columns containing indate and outdate of projects.These columns contain saturday and sundays.I want... |
Forum: MS Access and FileMaker Pro Aug 25th, 2009 |
| Replies: 3 Views: 472 Hi everone,
i have a table containing employees in and out dates of a project containing sat and sun.i want to remove sat and sun and display results.how to achieve this. |
Forum: ASP.NET Apr 30th, 2009 |
| Replies: 1 Views: 301 hi,
These are the websites you can use to learn asp.net
http://www.asp.net/get-started/
www.w3schools.com
www.codeproject.com
www.4guysfromrolla.com |
Forum: ASP.NET Apr 30th, 2009 |
| Replies: 1 Views: 378 Hi,
If you are using file upload control then you can't upload files having size more than 4 mb.If you want to increase size limit make these changes in web.config file
<system.web>
... |
Forum: ASP.NET Apr 30th, 2009 |
| Replies: 2 Views: 509 Hi,
Are you using URL mapping and if not
you need to send the page name
http//:www.buygoods.com/buy.aspx?email='"+me.txtemail+"'
and retrieve it as
string str=request.QueryString["email"]; |
Forum: ASP.NET Apr 30th, 2009 |
| Replies: 8 Views: 491 Hi,
When you run in localhost the url may contain "http:\\localhost\default.aspx" like this
when you run this in another computer it doesnt contain the application so thats why it is returning... |
Forum: ASP.NET Apr 29th, 2009 |
| Replies: 8 Views: 491 Hi,
Did you debug the website or simply run the url in a browser. |
Forum: ASP.NET Apr 27th, 2009 |
| Replies: 2 Views: 820 Hi,
Do you want to generate sql script for a database table in sql server 2005 ,then follow these steps
1.open microsoft sql sever 2005
2.open management studio express
3.go to your database... |
Forum: ASP.NET Apr 25th, 2009 |
| Replies: 2 Views: 813 Hi,
Where did you bind the dropdownlist it have binded the dropdownlist in page load you can use this javascript
window.opener.refresh();
or |
Forum: ASP.NET Apr 25th, 2009 |
| Replies: 3 Views: 1,002 Hi,
If your problem is solved mark this thread as solved so that fellow posters can concentrate on other posts. |
Forum: ASP.NET Apr 25th, 2009 |
| Replies: 5 Views: 805 Hi,
Just write a update query containing the fields you want to update and run the query. |
Forum: ASP.NET Apr 25th, 2009 |
| Replies: 2 Views: 345 Hi,
In the button click event update the database with the testbox values and assign the datatable to the gridview. |
Forum: ASP.NET Apr 22nd, 2009 |
| Replies: 14 Views: 1,251 Hi,
In the code shown below if you want to pass values to next page containing primary key of the record then change the code to
<asp:Label ID="lblEdit" runat="server" Text='<%# "<a... |
Forum: ASP.NET Apr 22nd, 2009 |
| Replies: 14 Views: 1,251 hi,
check this
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<h1 style="text-align: center; color: #FFFFFF;">
<asp:Label ID="CompanyName"... |
Forum: ASP.NET Apr 20th, 2009 |
| Replies: 14 Views: 1,251 Hi,
The previous poster suggested to place the code he gave in to gridview not outside it. |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 4 Views: 342 Hi,
check this links
www.asp.net
www.w3schools.com |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 1 Views: 1,062 Hi,
I didnt get you completely but as far i understand you .It can be achieved by using a session and storing the employee guid ,so that it can be used in other pages. |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 2 Views: 373 Hi,
you can learn asp.net from the following links
www.asp.net//official microsoft site
www.w3schools.com |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 4 Views: 1,405 Hi,
You can achieve that functionality using different ways like css,javascript and asp.net.Using asp.net you can achieve that functionality by having a datalist to display your images and a pop... |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 9 Views: 561 Hi,
First you need to have a login table to store user data like userid and username.
In the login page create a
session["userid"].
In this session assign the user name from login... |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 7 Views: 576 Hi,
we use
'"&TextBox1.Text&"' for vb
'"+TextBox1.Text+"' for c# |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 4 Views: 512 Hi,
You can use outlook to send mails using asp.net as follows
<a href='mailto:<%#DataBinder.Eval(Container,"DataItem.EMAILID")%>'>
... |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 4 Views: 576 Hi,
After you build a website web.config will be automatically displayed. |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 5 Views: 5,998 Hi,
You didnt assign navigation url to hyperlink ,that's the reason why its not firing. |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 7 Views: 3,321 Hi,
Try query as
select distinct * from imagegallery
Check whether you have uplaoded two seperate images. |
Forum: ASP.NET Apr 9th, 2009 |
| Replies: 4 Views: 893 Hi,
Try like this
Protected Sub RadioButtonList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Dim rd As RadioButtonList
rd = CType(sender,... |
Forum: ASP.NET Apr 7th, 2009 |
| Replies: 4 Views: 893 hi,
Can you show your full code. |
Forum: ASP.NET Apr 7th, 2009 |
| Replies: 2 Views: 1,494 hi,
You can use modal pop up extender from ajax.check this link
http://www.aspdotnetcodes.com/Ajax_ModalPopup_PostBack_GridView.aspx |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 6 Views: 945 hi,
check this links
http://www.beansoftware.com/ASP.NET-Tutorials/Bar-Pie-Chart.aspx
http://authors.aspalliance.com/jnuckolls/Articles/ASPCharts/default.aspx |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 1 Views: 327 hi,
first you need to download ajaxentensions .here's a link to download
http://www.asp.net/ajax/downloads/ |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 3 Views: 888 hi,
why you set panel to visible or not instead set the buttons to visible or invisible.In both ways you can achieve the same functionality.i can help more if you post your code here. |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 3 Views: 901 hi,
thru code in ado.net you can use this achieve the same.
try like this
public static int GetMax_ID()
{
if (!connected)
Connect(); |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 4 Views: 802 hi,
you can place the image ina updata panel and set default button to the image button. |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 10 Views: 1,557 hi,
check this link
http://www.codeproject.com/KB/aspnet/Bind_Dropdown.aspx
http://codingatlas.wordpress.com/2006/08/31/drop-down-list-%E2%80%93-client-side-data-binding/ |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 6 Views: 888 hi,
you can achieve that functionality using
cross post back feature in asp.net 2.0.
you can search google for info on cross post back. |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 6 Views: 511 hi,
if you want to display data in tabular format you can go for
gridview /datagrid
if you want to custom format display you can go for
repeater/datalist
we can help more if you say what... |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 7 Views: 3,321 hi,
check this link
http://www.dotnet-friends.com/Articles/ASP/ARTinASPffb8509f-5dc4-4765-9c25-cb2087a5994d.aspx |
Forum: ASP.NET Apr 2nd, 2009 |
| Replies: 1 Views: 457 hi,
instead of using pop up, why dont you open the child window completely .Then the user has to complete work in child and return to parent window. |
Forum: ASP.NET Apr 2nd, 2009 |
| Replies: 6 Views: 4,884 hi,
try like this
<table>
<tr>
<td>
<asp:TextBox ID="txtid" runat="server"></asp:TextBox>
</td> |
Forum: ASP.NET Apr 1st, 2009 |
| Replies: 2 Views: 558 hi,
check this link
http://aspalliance.com/1798_Building_a_Custom_ASPNET_Ajax_Enabled_Grid_Using_JavaScript.all |