Forum: ASP.NET 7 Days Ago |
| Replies: 6 Views: 204 Change the following line
txtProductName.Text += "," & cblPlanets.Items(i).Value
Pls. Mark as solved!!! |
Forum: ASP.NET 7 Days Ago |
| Replies: 6 Views: 204 Hi there
code for you!!!
Protected Sub ibtnCancel_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ibtnCancel.Click
Dim i As Integer
... |
Forum: ASP.NET 7 Days Ago |
| Replies: 6 Views: 204 Hi
Because your selected item is only one.
you can use if i understood you correcly!!! do your stuff in for loop
for i=0 to CBInsurance.items.count-1
next |
Forum: ASP.NET 8 Days Ago |
| Replies: 2 Views: 288 Hi
It's as simple as that. take a look at the eg:
<asp:Menu ID="Menu1" runat="server" BackColor="#E3EAEB" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#666666"... |
Forum: ASP.NET 12 Days Ago |
| Replies: 2 Views: 207 Pls. check your HTML Source page in contact.aspx and defaulf.aspx
Codebehind="contact.aspx.vb" ???
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="frmAnnouncmentsAndMemos.aspx.vb"... |
Forum: ASP.NET Oct 12th, 2009 |
| Replies: 1 Views: 303 Hi
Use the following Code
<table>
<tr>
<td style="border:dotted">
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>
... |
Forum: ASP.NET Oct 12th, 2009 |
| Replies: 3 Views: 323 Hi
You can compare the Path Stored in DB with physical path of the file along with their file extension eg .bmp/.jpeg etc... |
Forum: ASP.NET Sep 26th, 2009 |
| Replies: 3 Views: 390 Hi Sandeep
1) set Autopostback Property = true of Textbox1
2) protected Sub Textbox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtNewJobRankSerial.TextChanged
... |
Forum: ASP.NET Sep 12th, 2009 |
| Replies: 1 Views: 279 Hi
If i understood u correctly, u need to search records based on your Query value stored in session("Example").
Write: "select * from mytable where mycolumn like '%" & session("Example") & "%'... |
Forum: ASP.NET Sep 7th, 2009 |
| Replies: 6 Views: 800 Hello dear
You can use select_IndexChangeEvent Like this...
Protected Sub MyDropDownList_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles... |
Forum: ASP.NET Sep 7th, 2009 |
| Replies: 5 Views: 706 Hi there
Use the Query like this . The result is tested in 'Adventureworks' database
Select
product.ProductID,
product.Name,
ProductInventory.Quantity,
product.Name+'('+... |
Forum: ASP.NET Sep 7th, 2009 |
| Replies: 5 Views: 706 Hello there
You can do this with the resultset from your dataset source.
You can write the Group query to select eg:
select ProductID , ProductName and Value as Contactinate Productname +... |
Forum: ASP.NET Jul 19th, 2009 |
| Replies: 6 Views: 3,025 Hi there
try connection pooling . It may help you
<add key="DBConnection" value="Data Source=10.100.50.93;Initial Catalog=billing_production;User Id=sa;Password=;Pooling=true;Min Pool Size=2;Max... |
Forum: ASP.NET Jun 24th, 2009 |
| Replies: 4 Views: 554 Hi There
Pls. see the code that uses reader
You can assign data to sql reader
Public Function CheckRequest(ByVal response As String) As Boolean
Dim reader As SqlDataReader
... |
Forum: ASP.NET Feb 11th, 2009 |
| Replies: 2 Views: 944 Hi
Try this code
Try
'(1) Create the MailMessage instance
Dim mm As New MailMessage(FromEmailAddress, ToEmailAddress)
'(2) Assign the MailMessage's properties |
Forum: ASP.NET Dec 2nd, 2008 |
| Replies: 19 Views: 2,107 As i understood from you code in selectindexchanged event:
daItems.SelectCommand.CommandText = "Select ProductName, UnitPrice, UnitsInStock, ProductImage from dbo.Products where CategoryID = " ... |
Forum: ASP.NET Dec 2nd, 2008 |
| Replies: 19 Views: 2,107 hii
Add the 3rd line code while binding DDlist.
ddlItems.DataSource = dsCategory;
ddlItems.DataMember = "Categories";
ddlItems.DataValueField= "CategoryID"... |
Forum: ASP.NET Nov 2nd, 2008 |
| Replies: 2 Views: 815 .aspx code
<table>
<tr>
<td style="height: 21px">
File Name
</td>
<td style="height: 21px">
<input... |
Forum: ASP.NET Oct 11th, 2008 |
| Replies: 3 Views: 7,144 Hi,
pls. look at this code below. it might help u |