Can we have more than one web.config in one project ?
RaviJJain
Posts
-
Can we have more than one web.config in one project ? -
How to show words in Hindi at browserhttp://quillpad.in/new/quill.html Type words in English and they will be produced in hind then copy and paste them on the browser u dont have to download the fonts
-
Modal Dialog and Session Problemi m opening a modal dialog page and from that modal dialog again opening a simple popup page now in the simple popup page i m not getting my Session (session gets expired) please help urgent :((
-
Doesn't compile page if I put the Class in a namespace...remove the _ (underscore) from the
Inherits="MyNameSpace._Default"
toInherits="MyNameSpace.Default"
-
how to use click event of button in itemtemplate of datalist.write below code in your aspx page
-
Want to display based on date...............your sql query should like this
select a.*,b.* from teble1 a, table2 b, where datedifff(dd,a.carddate,b.leavedate) = 0
-
how to use click event of button in itemtemplate of datalist.in the vb file
Private Sub datalist1_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs) Handles datalist1.ItemCommand if e.commandname = "button1" then response.redirect("xyz.aspx") endif end sub
-
how to use click event of button in itemtemplate of datalist.there is a property of button commandname set commandname="Button1" and on the click of the button in itemcommand event of the datalist you can trace the button by its command name and can code accordingly.
-
How to get the Clients Operating System in asp.net 1.1can any body tell me how to get the Clients running Operating System through the Request.form object i do not get the exact OS please help me...Very Quickly thanx :(
-
Call Javascript FunctionYou can call javascript by just printing the script on page as below private void btnSave_Click(object sender, System.EventArgs e) { if (flag == true) {
reposne.write("javascript:alert('hi');")
} } -
Cokkies Relatedhello there can anybudy solve this ? i want to find out that wather the cookies are enabled or disabled in asp.net 1.1 thanx ;)
-
Popup Problemadd below code
-
how to logout session handlei have tried your code but below line dont work any other way to stop the back button? Response.Cache.SetCacheability(HttpCacheability.NoCache)
-
Validation Summary Controlmake the RequieredFieldValidator Enabled=false
-
delete Confirm msg in datagridyou should use the following way add attributes on the delete button as
btndelete.attributes.add("onCLick","window.confirm('are You Sure to delete');")
when user clicks 'Yes' it will proceed furthor otherwise it wont proceed on pressing 'No' regards ravi jain :) -
Can i use AJAX in ASP.net 1.1?Yes u can. u have to add some lines in web.config's tag and follows the code rules for ajax. regards ravi
-
alert problemNo, Kissy response.write meanse writing some text on the same page as you wrote code i tried the same to my page but i got the message on the same page, it didn't redirected me any other page. i think you must check your .aspx page code. Regards Ravi :-O
-
Dropdown list problemDD2.Items.FindByText(DD1.SelectedItem.Text).Selected = True
:-O -
alert problemtell me what exactly u want!:confused:
-
alert problemu should add attributes on the button click add following code on your html page
function chktxt() { if (document.getEelementById("textbox1").value='') { alert('Enter Some Value'); } }
and add following code on your .vb page in page_load eventbutton1.attributes.add("onclick","return chktxt();")
check and reply me quick