 |

|
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|

|
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|

|
Hi all. I am writing a program using Microsoft Visual Web Developer. I have 3 textboxes (TextBox1, TextBox2 and TextBox3) and a button. I want to use a foreach loop to clear textboxes.
For some reason this code doesnt work on a Webform. While debugging it, the debugger skips the line: "if (c is TextBox)" and so the textboxes dont get cleared. Here control = {ASP.default_aspx}
When I use the below code in Microsoft Visual C# with a windows form it works. What could be wrong?
Here is the code:
protected void Button1_Click(object sender, EventArgs e)
{
ClearTextBoxes(this);
}
public void ClearTextBoxes(Control control)
{
foreach (Control c in control.Controls)
{
if (c is TextBox)
{
((TextBox)c).Text = " ";
}
}
|
|
|
|

|
I Want To Validate my Windows Project while User can not Share this project to another or in One year Project will be Expired
Like An Antivirus Program Expired after One or two months
|
|
|
|

|
I would suggest you to google like this: "implementing licensing for trial versions in windows applications"
Be a good professional who shares programming secrets with others.
|
|
|
|

|
hi,
can anyone suggest me the best book for mvc4 pls
|
|
|
|

|
Ok this has sort of been asked before but also somewhat differently here. I have a regular drop down (not connected to a database) that just has the topics of subjects.
This is a sample of what I have:
<asp:DropDownList id="ddlcourseType" runat="server"
onselectedindexchanged="ddlcourseType_SelectedIndexChanged"
AutoPostBack="True">
<asp:ListItem Value="None">Please Select</asp:ListItem>
<asp:ListItem Value="Engl">English</asp:ListItem>
<asp:ListItem Value="Math">Math</asp:ListItem>
<asp:ListItem Value="Soci">Social Studies</asp:ListItem>
<asp:ListItem Value="Scie">Science</asp:ListItem>
<asp:ListItem Value="Hist">History</asp:ListItem>
</asp:DropDownList>
I want to make it so that when it changes the next part will search and select teachers that teach that specific subject. I am using an Access Database for connection.
I have pieced together some of what others did in an attempt to get it to work but no.
protected void ddlcourseType_SelectedIndexChanged(object sender, EventArgs e)
{
OleDbConnection dbConn = null;
OleDbCommand dbCmd;
OleDbDataReader dr;
String strConnection;
String strSQL;
string path = Server.MapPath("eAcademy_DB.mdb");
string Teachable = Convert.ToString(ddlcourseType.SelectedValue);
strConnection = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=" + path;
dbConn = new OleDbConnection(strConnection);
dbConn.Open();
strSQL = "select * from tblEmployee where canTeach=" + Teachable;
dbCmd = new OleDbCommand(strSQL, dbConn);
DataSet ds = new DataSet();
dbConn.Close();
ddlTeacher.DataSource = ds;
ddlTeacher.DataTextField = "emp_ID";
ddlTeacher.DataValueField = "emp_ID";
ddlTeacher.DataBind();
ddlTeacher.Items.Insert(0, new ListItem("--Select--", "0"));
if (ddlTeacher.SelectedValue == "0")
{
ddlTeacher.Items.Clear();
ddlTeacher.Items.Insert(0, new ListItem("--Select--", "0"));
}
}
I think what I really need to do is make a for loop and have it iterate for the amount of teachers that are in the list, and then have it populate the list, but not sure how exactly to do this.
It is hanging up on the ds part each time. I know the databind is causing it so this is why I thought perhaps better to iterate this? Any help would be appreciated.
The values from the first list are in the tblEmployee for "T" Teachers that can teach those classes. So that is why I want to 2nd drop down populated with their names. Thanks!
|
|
|
|

|
Hi All,
I have an asp.net application in which I am using two tables, Table1 and Table1Staging. Staging table data is updated every month.
And both have the same columns except the identity columns for the two tables are different. The reason for that is Table1 is transactional table so that we have to use an Identity columnfor that, here we are doing it with Unique Identifier. And there is an identity column in Staging table as auto increment integer for the sake of Entity Framework.
They both have a unique contraint column called clientId on which I am going to write all the logic to update or modify.
Now my question is I want to get all the rows in the staging table whose clientid exists in staging table but doesnt exist in transactional table, similar to not in operator in SQL Query.
Please if somebody can help me that would be really helpfull. I am searching from my side also. But if someone can help me its really great.
Thanks in advance.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
modified 2 days ago.
|
|
|
|

|
Hi @all
I´m new to Expressiontrees and their invocation...
but they seem to be really mighty and useful...
I know that one can extend expressiontrees, but up until now I wasn´t been able to fully comprehend how to do that..
practically I want to "convert" this lambda into an expressiontree:
(o => o.LognName == name)
and I do that by this
Expression<Func<Users_UserAccount, bool>> whereLogonName = LinqExtender.DynamicLinq.BuildOrTree<Users_UserAccount, string>(LogonName, UserAccount => UserAccount.LogonName);
so far so good. I also know that I now can query multiple users... fine thing...
what´s really cool about this is, that expressiontree returns whatever you need takes any type of parameter... a fine thing would be if I was able to pass the correct "sql/linq" query to it...
to be honestly, my desire goes for this:
(o => o.LognName == name && o.LogonPW == "12345")
now my question is:
how to link different params in an expressiontree?
I heard about
Expression.Or
Expression.And
and am using it, but I feel that this does not function properly and as desired...
here´s my function of the treebuild:
public static Expression<Func<TValue, bool>> BuildOrTree<TValue, TCompareAgainst>(
IEnumerable<TCompareAgainst> wantedItems,
Expression<Func<TValue, TCompareAgainst>> convertBetweenTypes)
{
ParameterExpression inputParam = convertBetweenTypes.Parameters[0];
Expression binaryExpressionTree = BuildBinaryOrTree(wantedItems.GetEnumerator(), convertBetweenTypes.Body, null);
return Expression.Lambda<Func<TValue, bool>>(binaryExpressionTree, new[] { inputParam });
}
I've found that on the interwebs...it´s NOT mine...but with very few changes, I've also implemented the AND-equivalent. whoa... what an effort...
so, to put long things short:
how to combine the both of them to achieve the desired query?
thanks in advance!
what a cool community
[edit]
forgot that:
private static Expression BuildBinaryOrTree<T>(
IEnumerator<T> itemEnumerator,
Expression expressionToCompareTo,
Expression expression)
{
if (itemEnumerator.MoveNext() == false)
return expression;
ConstantExpression constant = Expression.Constant(itemEnumerator.Current, typeof(T));
BinaryExpression comparison = Expression.Equal(expressionToCompareTo, constant);
BinaryExpression newExpression;
if (expression == null)
newExpression = comparison;
else
newExpression = Expression.OrElse(expression, comparison);
return BuildBinaryOrTree(itemEnumerator, expressionToCompareTo, newExpression);
}
sorry
ps:hopefully I dove into the correct forum...
aaargh, ultraedit:
addendum:
LogonName in the lambda was of type string, the Expressionparam is of type string[]
addendum 458:
as one might suspect:my math knowledge is not that sophisticated... the term binarytree is familiar to me since 4 days or 5...
but, i´m somewhat able to use it...
just like luke skywalker and his lasersword...
he is capable to use it as a weapon, but is he able to assemble it!?
modified 2 days ago.
|
|
|
|

|
once more I´ve forgotten something...namely the calling of that expression:
Expression<Func<Users_UserAccount, bool>> whereLogonName = LinqExtender.DynamicLinq.BuildOrTree<Users_UserAccount, string>(LogonName, Users_Users => Users_Users.LogonName);
Expression<Func<Users_UserAccount, bool>> whereLogonPW = LinqExtender.DynamicLinq.BuildAndTree<Users_UserAccount, int>(siteparam, Users_Users => Users_Users.LogonPW);
Users_UserAccount medProOrignal = ce.Users_UserAccount.Where(whereLogonName).Where(whereLogonPW ).First();
but I found out, that there´s a 'priority-problem', when using .First();
but that´s so obvious...
consider the following:
two users:
user a:
UID:1 logonname: gargamel PW: a
user b:
UID:2 logonname: gargamel PW: b
actually I've overseen the fact that I was using .First()
.First() will simply take UID1 becoz it´s the first one found...
now I've tried it with .Single() and it returns the desired user...
but what left me dumb is the fact, that I can´t see the way this query get´s prioritized in terms of params...
actually, I hope my question is considerably clear and that I forgot nothing...
[eeedit]
I "profiled" it in SQLM MGMT Profiler but i´m veeery weak in SQL... no clue at all..
modified 2 days ago.
|
|
|
|

|
Hi,
I have seen in some website they use different fonts than the standard. For example:
.yakoutb
{
font-family: 'Yakout W20 Bold';
}
How can I do this?
Technology News @ www.JassimRahma.com
|
|
|
|
|

|
Hi,
I have a Datalist Which have some linkbuttons which redirects to other page with querystring .
on click it is redirecting to other page with QueryString.
If i am right click on the datalist linkbutton and try to open in new tab, only blank page is opening.
Guys if u have some solution regarding this please help me.
Regards,
Mrityunjay
|
|
|
|

|
Don't use a LinkButton[^] for this; use a HyperLink[^] instead.
Clicking a LinkButton will cause the current page to post back to itself and run through the entire page lifecycle. Your code will then call Response.Redirect, which will return an HTTP 302 response telling the browser to request a different page.
Clicking a HyperLink will cause the browser to request the correct page directly.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
need to download file when user click on file .
|
|
|
|

|
I need a freeware or the any .dll or any project that can take a pdf as input and convert the images inside the pdf into a text (.txt ) fromat. and the programming language used is C#
This can be done in two ways:-
1)Take Input pdf and Extract images.--1st API.
2) Take the extracted images and convert to .txt & also convert the text inside the pdf to plain text(.txt) -- 2nd API.
OR 2nd way :-
1) Take pdf input and directly extract text from images as well as the text inside the pdf.
------------------Please HELP------
Thanks a lot.
~Regards
Kaushal Behere
kaushalpbehere@gmail.com
kaushalpbehere@hotmail.com
|
|
|
|
 |
Message Automatically Removed
|
|
|
|

|
Hi people,
Could you please help me on how to convert an html document to a pdf document. I need like a free third party tool that can do the job. I've tried iTextsharp but it won't copy the styles from the html document to the pdf file. I've also tried Winnovative, but it prints out a watermark specifying that I am using a demo version.
I need a solution that can convert the file to pdf without the watermark but with the styles. Thanks a lot in advance guys.
Kind Regards,
Denzil.
|
|
|
|

|
Not sure but just try this: http://www.evopdf.com/[^]
Be a good professional who shares programming secrets with others.
|
|
|
|

|
I was giving a project to remove all silverlight components from a website. my question is this possible or should I just rewrite the site as an asp.net wed application
|
|
|
|

|
Hi, I need Chat box component (like as FB chat room) for a social network site.
|
|
|
|

|
And which of the hundreds of freely available components did you try and why did they not meet your needs? You have to give us something to go on here. There's no reason in your question why I shouldn't sell you my million dollar chat box component, right? It's really shiny.
|
|
|
|
|

|
I use WebMatrix 3. I've got an ASP.NET Web Pages site that draws fractals, it uses a SQL Compact database and works fine locally.
But after I published it to the Azure Cloud and tried it, I get an error in the Database.cshtml that it doesn't work. Error: Failed to find or load the registered .Net Framework Data Provider.
The URL is: http://aljo-fractals.azurewebsites.net Click on the option Database and you'll get to see the error.
I guess I need to add a framework to use the database, where do I get that?
This must be easy to fix, but how...
|
|
|
|

|
Hi,
I have developed an ASP.net VB application on 1.1 in which we insert certain data into a particular table which is on sybase.
My table structure:
CREATE TABLE dbo.at_ip_disbursement
(
doc_id numeric(7,0) IDENTITY,
doc_type varchar(30) NOT NULL,
rim_no int NOT NULL,
item_type varchar(80) NULL,
customer_name varchar(80) NOT NULL,
rsm_name varchar(80) NOT NULL,
branch_no int NULL,
business_unit varchar(30) NOT NULL,
input_dt datetime NOT NULL,
Category varchar(30) NULL,
deferral_details nvarchar(600) NULL,
days_deferred int NULL,
Deff_Expdt datetime NOT NULL,
Deferred_Dt datetime NULL,
rm_comments nvarchar(600) NULL,
creator_id varchar(10) NULL,
modifier_id varchar(10) NULL,
status char(1) NOT NULL,
App_Authority nvarchar(600) NULL
)
LOCK ALLPAGES
go
IF OBJECT_ID('dbo.at_ip_disbursement') IS NOT NULL
PRINT '<<< CREATED TABLE dbo.at_ip_disbursement >>>'
ELSE
PRINT '<<< FAILED CREATING TABLE dbo.at_ip_disbursement >>>'
go
Now the piece of code where the insert takes place:
Public Shared Function AddDisbursement(ByVal DocType As String, ByVal Rim As Int32, ByVal CustomerName As String, ByVal RSMName As String, ByVal BranchNo As Int32, ByVal Business As String, ByVal InputDate As String, ByVal Category As String, ByVal DeferralDetails As String, ByVal DeferredDays As String, ByVal DefExpDate As String, ByVal DefDate As String, ByVal RMComments As String, ByVal CreatorId As String, ByVal App_Authority As String, ByVal Item As String) As String
Dim logger As SKLogger = New SKLogger
Dim connMosaic As String = System.Web.HttpContext.Current.Session("connStr").ToString()
Dim cmdText As String
cmdText = "INSERT INTO at_ip_disbursement(" & _
"doc_type, " & _
"rim_no, " & _
"customer_name, " & _
"rsm_name, " & _
"branch_no, " & _
"business_unit, " & _
"input_dt, " & _
"Category, " & _
"deferral_details, " & _
"days_deferred, " & _
"Deff_Expdt, " & _
"Deferred_Dt, " & _
"rm_comments, " & _
"creator_id, " & _
"status, " & _
"App_Authority, " & _
"item_type) " & _
"VALUES (" & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"?," & _
"'A'," & _
"?," & _
"?)"
Dim conn As OdbcConnection = New OdbcConnection(connMosaic)
Dim cmd As OdbcCommand = New OdbcCommand(cmdText, conn)
cmd.Parameters.Add("@DocType", OdbcType.VarChar).Value = DocType
cmd.Parameters.Add("@Rim", OdbcType.Int).Value = Rim
cmd.Parameters.Add("@CustomerName", OdbcType.VarChar).Value = CustomerName
cmd.Parameters.Add("@RSMName", OdbcType.VarChar).Value = RSMName
cmd.Parameters.Add("@BranchNo", OdbcType.Int).Value = BranchNo
cmd.Parameters.Add("@Business", OdbcType.VarChar).Value = Business
cmd.Parameters.Add("@InputDate", OdbcType.Date).Value = InputDate
cmd.Parameters.Add("@Category", OdbcType.VarChar).Value = Category
cmd.Parameters.Add("@DeferralDetails", OdbcType.VarChar).Value = GetNull(DeferralDetails)
cmd.Parameters.Add("@DeferredDays", OdbcType.Int).Value = DeferredDays
cmd.Parameters.Add("@DefExpDate", OdbcType.Date).Value = DefExpDate
cmd.Parameters.Add("@DefDate", OdbcType.Date).Value = GetNull(DefDate)
cmd.Parameters.Add("@RMComments", OdbcType.VarChar).Value = GetNull(RMComments)
cmd.Parameters.Add("@CreatorId", OdbcType.VarChar).Value = GetNull(CreatorId)
cmd.Parameters.Add("@App_Authority", OdbcType.VarChar, 1200).Value = GetNull(App_Authority)
cmd.Parameters.Add("@Item", OdbcType.VarChar).Value = GetNull(Item)
Try
conn.Open()
cmd.ExecuteNonQuery()
Catch ex As Exception
logger.LogException("AddDisbursement", ex.ToString())
AddDisbursement = ex.Message
Finally
cmd.Dispose()
conn.Close()
End Try
'Return True
End Function
Now through javascript i allow user to input only 500 Characters(which works perfectly). Once the user submits data (say for example 400 characters) which is under the field "App_Authority" i get the following error:
ERROR [HY000] [INTERSOLV][ODBC SQL Server driver][SQL Server]ct_param(): user api layer: external error: A data length of 399 exceeds the maximum length allowed for CHAR data.
The same happens when i try to insert data into fields "RMComments" and "DeferralDetails"
Kindly advise me.
Thanks in Advance
|
|
|
|

|
<<Tash18>> wrote: cmd.Parameters.Add("@App_Authority", OdbcType.VarChar, 1200).Value = GetNull(App_Authority)
Above is varchar, but in the table, you made it nvarchar,
It's a mismatch, that involves unicode I think, in which one is double the space of the other,
varchar is a 8bit codepage
[edit]
adjust your column in the table to take 1200 or whatever the value is suppose to be or vice versus
App_Authority varchar(1200) NULL
|
|
|
|

|
I need to add hot keys to my ASP.net MVC3 application. please give me any ideas on the best way to implement this in MVC?
for eg:
go to home page of my application when Ctrl + Q is used
to log_out when Ctrl + K is used
|
|
|
|

|
JQuery hotkeys is probably the best way to do that, but please don't override common functions like ctrl-Q which the user has an expectation for already. If you change the behavior of that key, users won't like it.
http://plugins.jquery.com/hotkeys/[^]
|
|
|
|

|
hi Jasmine,
thanks you jasmine i am trying whit you idea.
Regards,
jsm
|
|
|
|

|
i have two datatables dt1 and dt2.The first one has 3 columns and the second one has 1 column .i want to merge them together.As of now the join is happeneing top-down way,i want it sideways .
|
|
|
|

|
I posted my real answer on Facebook. However, what you need to do here is go back to basics and learn some SQL. Your question is like, Day 2 of a basic SQL class. I don't even know how to answer it other than to give you the ANSI join syntax, which is freely available on Google. So, I don't understand why you are asking people on here to help you? You need to learn the basics of the language first, so you can ask intelligent questions.
http://www.w3schools.com/sql/[^]
select <columns list>
from <table>
join <table2> on <table.column> <operator> <table.column>
That's tripping you up? Please explain why.
|
|
|
|

|
This worked
var res =(from tb1 in dt1.AsEnumerable()
join tb2 in dt2.AsEnumerable() on tb1["A"] equals tb2["AA"]
Gridview.Datasource = res;
Gridview.DataBind();
anyways thank you
|
|
|
|

|
In your question you did not say you wanted Linq style stuff, didn't even say you were using c#. Look at your answer and your question and ask yourself if it's possible to go from one to the other.
|
|
|
|

|
Anyway i shall strive to frame my question better the next time around,thank you jasmine.i have another question for you.suppose i have the row index of a gridview (that i obtain on clicking the first cell in that row) how do i obtain the value of 3rd cell in that very row.If my question was ambiguous pardon me.
|
|
|
|

|
Keep in mind that I get an email copy of your comments even if you delete them later. I'm just trying to help you get better answers. Whenever you post a question, please read it carefully before posting, to make sure you've given the information needed to answer the question completely.
When working with GridView object, it can be tricky to get values from the data - much better to get those from the underlying dataset itself. But, you can sometimes get it this way...
(because it's zero-indexed, this would be the third cell from the left)
myGridView.Rows[myRowIndex].Cells[2];
The problem is, the object living at that reference is a "TableCell" object, and you'll have to extract the data value out of there somehow. Remember, the GridView is the VISUAL object, not the data object. The best way to find data when the user clicks on a row in a GridView is to use the primary key and go back to the original DataSet which is bound to the control.
|
|
|
|

|
I have a web application. I want to know user doing in this?
And I can save it by session.
Can you tell your opinion?
|
|
|
|

|
Your question is not quite clear. Please rephrase and elaborate on what are you trying to do.
|
|
|
|

|
I want to record all users' activities on websites such as manipulation 1 log file
|
|
|
|

|
Quote: I want to know user doing in this?
And I can save it by session.
What does it mean?
|
|
|
|

|
I want to record all users' activities on websites such as manipulation 1 log file
|
|
|
|

|
So wots problem
Create a database table to store activities
at every operation store the activity along with date time, user, and any other things u require.
|
|
|
|
|
|
|

|
Use FormsAuthentication and then just store whatever you want into the Session.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|

|
Thank you!
|
|
|
|

|
No problem.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|

|
How do I clear the server cache in asp.net? I have found out that there are two kinds of cache. There is the browser cache and the server cache. I have done some searching but I have yet to find a clear, step-by-step guide for clearing the server cache using asp.net (or not). I am working on an ASP.NET c# application that uses a 3rd party CMS. I have reason to believe that a bug I am having must have something to do with the cache on the server side. As an admin of the CMS, I have used some controls that individual users can see but they should not. The customer service has suggested I need to clear the server cache. I can remote to the server. Do I need to clear the cache from there? I did a search on google. So far, the only information I have is confirmation that there is such a thing as a cache on the server that differes from the client cache on the browser. The first results from Google are from wikipedia and instruct users of using a url addition to clear the cache on the server. I am not sure if that will work for what I need to do. I wish I could find some sort of ASP.NET C# sample code that will clear the server cache.
|
|
|
|
|

|
hi to all
how can i acceess 'i' in for loop
thanks in advance
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication2._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form runat="server">
<div>
<asp:DropDownList ID="aspMySelect" runat="server" OnSelectedIndexChanged="aspMySelect_SelectedIndexChanged" AutoPostBack="True">
</asp:DropDownList>
<asp:TextBox ID="aspNewOption" runat="server"></asp:TextBox>
<asp:Button ID="Button1" OnClientClick="addAspPopUp()" runat="server" Text="Button" />
<script type="text/javascript">
function addAspPopUp() {
debugger
var optionText = document.getElementById('aspNewOption').value;
var textBox = document.getElementById('aspNewOption');
var objSelect = document.getElementById('aspMySelect');
listCount=<%=objListItems.Count%>;
for (var i=0;i<=listCount;i++)
{
objSelect[objSelect.length] = new Option('<%=objListItems[i]%>');
textBox.value = "";
}
}
</script>
<input type="button" id="btnRegister" onclick="ConvertDate()" value="test" />
<input type="button" id="Button2" onclick="addAspPopUp()" value="test2" />
</div>
<asp:Label ID="lbltest" runat="server"></asp:Label>
</form>
</body>
</html>
|
|
|
|
 |
|