User Profile
Collapse
-
which row of your code give this error.The exception message itself describes you are trying to convert a string which is not a valid date format.debug and see what value you are passing. -
This exception comes if datetime value is null.
Check u r parameter values.Leave a comment:
-
I face some problem in javascript working in safari in one machine.Then we tried in another machine and that worked.
I suggest you to test in some other machine.As I remember the network guy installed some patch and our code worked on safari.Leave a comment:
-
refer this link seems like some unmanaged code issue somewhere in your code.
http://social.msdn.microsoft.com/For...1-09534882d76c...Leave a comment:
-
All validation controls, except the RequiredFieldVa lidator control, will pass validation if the input control pecified by the ControlToValida te property contains no text.
Use both requiredfield and regular expression validatorsLeave a comment:
-
why u have i < dataGridView1.R ows.Count - 1.either make it i <= dataGridView1.R ows.Count - 1 or make it i < dataGridView1.R ows.CountLeave a comment:
-
You have defined the parameters but you are not adding that to you sqlcommand object.Leave a comment:
-
i think u are not creating the @query properly.may be missing some single quote.print the @query and see what you are getting before u execute that.Leave a comment:
-
remove ControlToValida te="rblStatus" see if there is any change.Leave a comment:
-
-
mzmishra replied to Unable to cast object of type 'ASP.ProjectName_master' to type 'PrijectName.master'in ASP .NETRefer this link.You may find something helpful
http://forums.asp.net/t/954194.aspx?PageIndex=7...Leave a comment:
-
The session ID is normally generated on the server. It's then sent to the client, either as a cookie in the HTTP headers, or by including it in the HTML, i.e. the links become href=a.html?ses sionid=12
If the server is running in cookie-less mode, then the session key becomes part of the URL
the client's next request will then contain the session Id, either in the cookie or the GET part of the request and the server...Leave a comment:
-
Please check out this MSDN AricleWalkthrough: Performing Bulk Updates to Rows Bound to a GridView Web Server Control.
I believe it will help you out a lot.Leave a comment:
-
mzmishra replied to Initialize radiobuttonlist selected value at Page_Load() in TabContainer controlin ASP .NETdid u add one onclick event handler to radio button list
something like this
Code:rdbList.Items[0].Attributes.Add("onclick", urmethod);Leave a comment:
-
refer this link.you might be missing something
http://msdn.microsoft.com/en-us/libr...8VS.80%29.aspx...Leave a comment:
-
add this line in your web.config file and see what happens
< httpRuntime maxRequestLengt h="10240" requestLengthDi skThreshold="40 96"/ >
Note - change the values according to your requirement.Leave a comment:
-
Yes you can create gridview at runtime.
Here is just sample code how to add bound couln and template column
...Code:BoundField Column1 = new BoundField(); Column1.DataField = "Name"; Column1.HeaderText = "Name"; GridView1.Columns.Add(Column1); TemplateColumn TemplateField ckhColumn = new TemplateField(); ckhColumn.HeaderTemplate = new GridViewTemplate(ListItemType.Header,
Leave a comment:
-
In sql server it is
Code:alter procedure SAR_Sp_AddEmployee(@EmpName varchar(10),@CampaignID int,@startDate datetime) as insert into EmpMaster values(@EmpName,@CampaignID,@startDate) SELECT SCOPE_IDENTITY()Leave a comment:
-
Finny,
I got one more issue.
What I did is I add this code and javascript function.Now I am getting my results properly.
But my problem is when I highlight that row and user clicks it I want to fire the onselectedevent change for dropdown.
Now for my case it won't work because my selected row is now the displayed one.I want the behaviour to be similar to highlighting a dropdown and pressing a key,...Leave a comment:
No activity results to display
Show More
Leave a comment: